开发者

How can I get the logged-in user's username using JDBCRealm?

开发者 https://www.devze.com 2023-03-19 15:24 出处:网络
I\'m running Glassfish 3.0 and I\'m implementing JDBCRealm for login authentication. The username and roles are saved in a table called usertable. The authentication is working as expected.

I'm running Glassfish 3.0 and I'm implementing JDBCRealm for login authentication. The username and roles are saved in a table called usertable. The authentication is working as expected.

But the problem is now when开发者_如何学编程 the user logs in, how can I retrieve the username of the logged in user in the application?

PS: I'm implementing JSF page and Managed Bean


In JSF, you can retrieve the current Principal associated with the request and hence, the current session, using the ExternalContext object, which can be retrieved from the FacesContext. The Principal associated with the request is accessible from the ExternalContext using the getUserPrincipal() method:

FacesContext.getCurrentInstance().getExternalContext().getUserPrincipal();

The above invocation can be done in a JSF managed bean. You can invoke the getName() method on the Principal object to retrieve the name of the user as a String.

Note that, it possible for you to obtain a Principal instance that references the Anonymous user, if you are retrieving the Principal before authentication, or if the authentication scheme does not protect the entire site.


Request.getRemoteUser or Request.getUserPrincipal, independent of the realm you use for authentication, so if you use a File realm for testing and a JDBC realm for production it will work in both cases. By the way, if you use JDBCRealm also have a look at FlexibleJDBCRealm.


Your authenticate method should return a java.security.Principal which will contain the name.

http://download.oracle.com/javase/1.4.2/docs/api/java/security/Principal.html

0

精彩评论

暂无评论...
验证码 换一张
取 消