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.
getRoles()Weblogic ロール マッピング プロバイダのメソッドの使用方法を教えてください。これはコードでどのように使用されますか?
getRoles()
これをチェックしてください
if ((request.getUserPrincipal().getName()) != null) { String userName = request.getUserPrincipal().getName().trim(); session.setAttribute("userName", userName); ..... if (request.isUserInRole("ADMINS")) { //do actions here } }