我正在使用Liferay Portal 6.0。版。我正在创建钩子插件,以便在用户请求时重定向到新社区。我在ServicePreAction中覆盖了run方法,如下所示:
protected void doRun(HttpServletRequest request, HttpServletResponse response)
throws Exception {
ThemeDisplay themeDisplay = (ThemeDisplay)request.getAttribute(
WebKeys.THEME_DISPLAY);
if(some condition) {
response.sendRedirect("/web/mycommunity/home");
}
}
但我正在查找“Too Many Redirects”错误。 任何解决方案?