flex : 从jsp页面重定向
我正在使用 http 从 Flex 应用程序调用 page.jsp,我正在检查 jsp 页面上的身份验证。现在,如果用户有效,那么他应该重定向到 page2.jsp,如果用户是无效用户,那么他应该重定向到 page3.jsp ,我想从 jsp 页面重定向,而不是从 mxml 页面重定向。
我应该怎么做?
i am calling a page.jsp from flex application using http, i am checking for authentication on jsp page.now if user is valid than he should redirect to page2.jsp, and if user is invalid user than he should redirect to page3.jsp, i want to redirect from jsp page not from mxml page.
how should i do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
忘记
page.jsp
并使用 < code>javax.servlet.Filter 映射到/page2.jsp
的url-pattern
上,并在中执行以下工作>doFilter()
方法:然后让您的 Flex 应用程序仅调用
page2.jsp
。Forget
page.jsp
and use ajavax.servlet.Filter
which is mapped on anurl-pattern
of/page2.jsp
and does the following job indoFilter()
method:Then let your Flex app just call
page2.jsp
.