根据Websphere中的用户角色重定向到URL

时间:2017-06-26 20:07:54

标签: websphere url-redirection user-roles

我需要将具有特定用户角色的用户定向到特定的URL。这可以在WebSphere中完成吗?如果是这样,怎么样?

1 个答案:

答案 0 :(得分:0)

您可以使用isUserInRole(),其中req是HttpServletRequest

if (req.isUserInRole("myRole")){
        ...

}

了解更多详情: Developing with programmatic security APIs for web applications