标签: websphere url-redirection user-roles
我需要将具有特定用户角色的用户定向到特定的URL。这可以在WebSphere中完成吗?如果是这样,怎么样?
答案 0 :(得分:0)
您可以使用isUserInRole(),其中req是HttpServletRequest
if (req.isUserInRole("myRole")){ ... }
了解更多详情: Developing with programmatic security APIs for web applications