我在前端使用Apache进行Java EE设置,在后端使用jboss eap。在apache层之前有负载均衡器。
我需要将通过apache点击负载均衡器的所有https请求路由到jboss。我使用代理传递在apache连接器层中执行此操作。在jboss eap中更改了server.xml。
在登录模块中,我们发现登录页面后正确地被重定向到url但是:80被添加到IP地址(https模式)。
For example: When i click login url is https://1.1.1.1/tt/login.glx, after successful login it gets redirected to https://1.1.1.1:80/tt/view.glx
不确定缺少什么?
有什么想法吗?
我们正在使用spring容器,它使用上下文xml文件中的以下设置重定向到另一个页面。
<form-login login-page="/login.glx" default-target-url="/view.glx" always-use-default-target='false' authentication-failure-url="/failed.glx"/>