1
我需要將具有特定用戶角色的用戶指向特定的URL。這可以在WebSphere中完成嗎?如果是這樣,怎麼樣?根據Websphere中的用戶角色重定向到url
我需要將具有特定用戶角色的用戶指向特定的URL。這可以在WebSphere中完成嗎?如果是這樣,怎麼樣?根據Websphere中的用戶角色重定向到url
可以使用的isUserInRole()如下,其中REQ是HttpServletRequest的
if (req.isUserInRole("myRole")){
...
}
有關詳細信息: Developing with programmatic security APIs for web applications
我剛纔用的HttpServletRequest#的isUserInRole在登錄時豆( 「角色」)重定向他們到一個適當的網址 – Fritz