Sealyu

--- 博客已迁移至: http://www.sealyu.com/blog

  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理 ::
  618 随笔 :: 87 文章 :: 225 评论 :: 0 Trackbacks

原帖地址:http://odyssi.blogspot.com/2008/01/intro-to-jboss-seam-security-part-1.html

Intro to JBoss Seam Security, Part 1 - Authentication

Recently, I mentioned how I had just started working with the JBoss Seam application framework. The more I have worked with it, the more impressed I have become at how it makes things that are typically difficult using standard Java EE much simpler and more streamlined. One of the areas in which Seam really shines is security. While Java EE defines JAAS for use in securing applications, it is left up to the developer to ingrain this security down to each facet of the application. With Seam, it is easy to define security constraints at all levels of an application, simply through using annotations. In addition, the complexity of authenticating users with JAAS is reduced through Seam's authenticator mechanism. This article will give an introduction to Seam authentication, and show how to write your own custom authenticator.

Seam's authenticator construct hides the complexity of managing a JAAS configuration, and allows you to implement authentication how you see fit. Perhaps your organization relies on a simple username/password combination for authenticating user accounts in LDAP. Maybe you use a SecureID token, and the accounts are stored in a SQL database. By writing your own authenticator class, or making use of publicly available ones, you can control the way authentication is done in your organization.

To get started with your own authenticator, you must first declare it in the components.xml file. This file manages much of the configuration for Seam. To add your authenticator, you simply define the class and method that will be used for authentication. For example:

  1. <components xmlns="http://jboss.com/products/seam/components"  
  2.      xmlns:core="http://jboss.com/products/seam/core"  
  3.      xmlns:security="http://jboss.com/products/seam/security"  
  4.      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  5.      xsi:schemaLocation=  
  6.          "http://jboss.com/products/seam/components http://jboss.com/products/seam/components-2.0.xsd  
  7.           http://jboss.com/products/seam/security http://jboss.com/products/seam/security-2.0.xsd">           
  8.   
  9. <security:identity method="#{authenticator.authenticate}">  
  10.   
  11. </components>  


You'll notice the #{} syntax used here. This is JBoss' expression language pointing to a class with the instance name of authenticator, where the authenticate method will be used to login a user. Now that we have declared an authenticator to Seam, we're ready to implement it. Our example will be quite simple. If the user enters a username of admin, with a password of password, they will be authenticated successfully. In addition, we will assign them to the role of admin, so that they can perform some sort of administrative function within our application. The implementation of our authenticator would look like this:

  1. @Name("authenticator")  
  2. public class Authenticator {  
  3.   
  4. private static final String valid_user = "admin";  
  5. private static final String valid_password = "password";  
  6.   
  7. public boolean authenticate() {  
  8. String username = Identity.instance().getUsername();  
  9. String password = Identity.instance().getPassword();  
  10.   
  11. if((username.equals(valid_user)) && (password.equals(valid_password))) {  
  12.      return true;  
  13. }  
  14.   
  15. return false;  
  16. }  
  17.   
  18. }  
Our example is rather trivial. However, it gives a slight glimpse into how Seam authentication works. The first thing that you should notice is the @Name annotation. This annotation prompts Seam to create a bean with the name specified in the annotation. In this case, the name is authenticator, which is how we arrive at the value specified in our components.xml file. Our authenticate method will return true if authentication was successful, and false otherwise.

So how does the authenticate method get the username and password? This is done via the Identity class. The standard Identity class that comes with Seam is quite extensive, but basically provides support for a username/password combination. It is possible to subclass Identity, however, to support whatever authentication mechanisms you may need. You could implement code to support getting a SecureID token value from a user, or a SPNEGO ticket. All that is needed to make use of the Identity subclass is to add the following annotations to your implementation:

  1. @Name("org.jboss.seam.security.identity")  
  2. @Scope(SESSION)  
  3. @Install(precedence = APPLICATION)  
  4. @BypassInterceptors  
  5. @Startup  
  6. public class MyCustomIdentity extends Identity  
  7. { ... }  

Your custom Identity subclass is now ready for use.

Now that we have our authentication classes in place, we are ready to create our login form. This is trivial to create using Seam, particularly because of Seam's use of the JBoss expression language in forms. Our login form fragment would look like the following:

  1. <div>  
  2.    <h:outputlabel for="name" value="Username">  
  3.    <h:inputtext id="name" value="#{identity.username}">  
  4. </div>  
  5.   
  6. <div>  
  7.    <h:outputlabel for="password" value="Password">  
  8.    <h:inputsecret id="password" value="#{identity.password}">  
  9. </div>  
  10.   
  11. <div>  
  12.    <h:commandbutton value="Login" action="#{identity.login}">  
  13. </div>  


That's all there is to it. You are now ready to authenticate users via your own custom login form and authenticator. While this is an introduction to the simplified form of authentication in Seam, it should give you a good foundation to learn and explore on your own.

Next time, we will look at how authentication is used throughout an application, not just at the entry point.

Posted by WhoAmI? at 11:59 AM  

posted on 2009-04-23 15:36 seal 阅读(332) 评论(0)  编辑  收藏 所属分类: Seam

只有注册用户登录后才能发表评论。


网站导航: