我有发送电子邮件的servlet:
msg.setContent("<p>Please follow this <a href=\"http://localhost:8080/examples/RSI/ConfirmedResetPasswordPage.jsp?action=<%=userID%>\"> link </a>to reset your password",
"text/html" );
有谁知道如何将此链接设为ConfirmedResetPasswordPage.jsp页面的相对路径?
答案 0 :(得分:1)
您无法在电子邮件中添加相对路径。假设您的意思是,您不想对服务器URL进行硬编码并且您可以访问HTTPServletRequest request
对象,则可以使用request.getServerName()
或request.getRequestURL()
方法来确定服务器URL。