在tomcat中传递相对路径

时间:2014-08-08 20:27:27

标签: tomcat servlets

我有发送电子邮件的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页面的相对路径?

1 个答案:

答案 0 :(得分:1)

您无法在电子邮件中添加相对路径。假设您的意思是,您不想对服务器URL进行硬编码并且您可以访问HTTPServletRequest request对象,则可以使用request.getServerName()request.getRequestURL()方法来确定服务器URL。