从代码中使用send.Redirect时,应用程序URL中的端口号会发生变化

时间:2017-02-22 06:14:18

标签: java spring-mvc websphere-8

我在prod环境中的应用程序中观察到一个奇怪的行为。我们的Spring MVC应用程序部署在WebSphere 8.我们在用户登录成功后重定向页面到主页。但是在prod中,URL中的端口号变为不同的

For Instance。

登录URl:http://myapp:5555/login

使用以下方式重定向:response.sendRedirect(request.getContextPath() + "/homePage");

登录成功后,URl变为:http://myapp:33889/homePage。理想情况下它应该是http://myapp:5555/homePage :(。

你能帮帮我吗。

提前致谢。

0 个答案:

没有答案