Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个页面:
/myApp/internalPage.xhtml?orderId=1234
当用户未登录时,我的 web.xml 配置重定向到
/myApp/login.xhtml
在这一步中,我丢失了我的参数信息 (orderId=1234)。
如何配置 web.xml 以将所有参数传播到登录页面?
我想被重定向到:
/myApp/login.xhtml?orderId=1234
Tks
如果我没有误会您的意思,重定向是由您的安全约束触发的。在这种情况下,用户登录后,他/她将被重定向到原始 url,即 /myApp/internalPage.xhtml?orderId=1234(带参数)