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.
我正在开发liferay portlet。portlet 几乎完成了,但我对 jsp 重定向有很大的问题。每次查询成功时,它都不会重定向到我想要的 jsp,而是重定向到我的主页 jsp 页面。
问题是我怎样才能将我重定向到我想要的 jsp 页面?
我正在为 Eclipse、Tomcat 7 和最新的 Liferay 使用 liferay SDK
任何帮助将不胜感激!
提前致谢!
从您的问题来看,您似乎想从控制器重定向到 jsp
用这个 :-
response.setRenderParameter("jspPage", "jsppath");
如果您有任何问题,请告诉我!!!
actionResponse.setRenderParameter("jspPage", "/jsp/b.jsp");