2. Using the Tutorial Examples
3. Getting Started with Web Applications
4. JavaServer Faces Technology
7. Using JavaServer Faces Technology in Web Pages
8. Using Converters, Listeners, and Validators
9. Developing with JavaServer Faces Technology
10. JavaServer Faces Technology: Advanced Concepts
11. Using Ajax with JavaServer Faces Technology
12. Composite Components: Advanced Topics and Example
13. Creating Custom UI Components and Other Custom Objects
14. Configuring JavaServer Faces Applications
16. Uploading Files with Java Servlet Technology
17. Internationalizing and Localizing Web Applications
18. Introduction to Web Services
19. Building Web Services with JAX-WS
20. Building RESTful Web Services with JAX-RS
21. JAX-RS: Advanced Topics and Example
23. Getting Started with Enterprise Beans
24. Running the Enterprise Bean Examples
25. A Message-Driven Bean Example
26. Using the Embedded Enterprise Bean Container
27. Using Asynchronous Method Invocation in Session Beans
Part V Contexts and Dependency Injection for the Java EE Platform
28. Introduction to Contexts and Dependency Injection for the Java EE Platform
29. Running the Basic Contexts and Dependency Injection Examples
30. Contexts and Dependency Injection for the Java EE Platform: Advanced Topics
31. Running the Advanced Contexts and Dependency Injection Examples
32. Introduction to the Java Persistence API
33. Running the Persistence Examples
34. The Java Persistence Query Language
35. Using the Criteria API to Create Queries
36. Creating and Using String-Based Criteria Queries
37. Controlling Concurrent Access to Entity Data with Locking
38. Using a Second-Level Cache with Java Persistence API Applications
39. Introduction to Security in the Java EE Platform
40. Getting Started Securing Web Applications
41. Getting Started Securing Enterprise Applications
42. Java EE Security: Advanced Topics
Working with Digital Certificates
To Use keytool to Create a Server Certificate
Adding Users to the Certificate Realm
Using a Different Server Certificate with the GlassFish Server
To Specify a Different Server Certificate
Enabling Mutual Authentication over SSL
Creating a Client Certificate for Mutual Authentication
Using Form-Based Login in JavaServer Faces Web Applications
Using j_security_check in JavaServer Faces Forms
Using a Managed Bean for Authentication in JavaServer Faces Applications
Securing Enterprise Information Systems Applications
Configuring Resource Adapter Security
To Map an Application Principal to EIS Principals
Configuring Security Using Deployment Descriptors
Specifying Security for Basic Authentication in the Deployment Descriptor
Specifying Non-Default Principal-to-Role Mapping in the Deployment Descriptor
Further Information about Security
Part VIII Java EE Supporting Technologies
43. Introduction to Java EE Supporting Technologies
45. Resources and Resource Adapters
46. The Resource Adapter Example
47. Java Message Service Concepts
48. Java Message Service Examples
49. Bean Validation: Advanced Topics
50. Using Java EE Interceptors
51. Duke's Bookstore Case Study Example
52. Duke's Tutoring Case Study Example
53. Duke's Forest Case Study Example
An authentication realm, sometimes called a security policy domain or security domain, is a scope over which an application server defines and enforces a common security policy. A realm contains a collection of users, who may or may not be assigned to a group. GlassFish Server comes preconfigured with the file, certificate, and administration realms. An administrator can also set up LDAP, JDBC, digest, or custom realms.
An application can specify in its deployment descriptor which realm to use. If the application does not specify a realm, GlassFish Server uses its default realm, the file realm. If an application specifies that a JDBC realm is to be used for user authentication,GlassFish Server will retrieve user credentials from a database. The application server uses the database information and the enabled JDBC realm option in the configuration file.
A database provides an easy way to add, edit, or delete users at runtime and enables users to create their own accounts without any administrative assistance. Using a database also has an additional benefit, providing a place to securely store any extra user information. A realm can be thought of as a database of user names and passwords that identify valid users of a web application or set of web applications with an enumeration of the list of roles associated with each valid user. Access to specific web application resources is granted to all users in a particular role, instead of enumerating a list of associated users. A user name can have any number of roles associated with it.
Two of the tutorial case studies, Chapter 52, Duke's Tutoring Case Study Example and Chapter 53, Duke's Forest Case Study Example, use the JDBC realm for user authentication. Where appropriate, reference will be made to one or both of these examples.
To Configure a JDBC Authentication RealmGlassFish Server enables administrators to specify a user’s credentials (user name and password) in the JDBC realm instead of in the connection pool. This prevents other applications from browsing the database tables for user credentials. By default, storing passwords as clear text is not supported in the JDBC realm. Under normal circumstances, passwords should not be stored as clear text.
How you create the database tables depends on the database you are using. Duke’s Forest uses an Ant task, create-tables, in the build.xml file for the Entities project. The task executes an SQL script, create.sql, that creates the FOREST.PERSON, FOREST.GROUPS, and FOREST.PERSON_GROUPS database tables, as shown below:
CREATE TABLE "FOREST"."PERSON" ( ID int NOT NULL PRIMARY KEY GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1), FIRSTNAME varchar(50) NOT NULL, LASTNAME varchar(100) NOT NULL, EMAIL varchar(45) NOT NULL UNIQUE, ADDRESS varchar(45) NOT NULL, CITY varchar(45) NOT NULL, PASSWORD varchar(100), DTYPE varchar(31) ) ; CREATE UNIQUE INDEX SQL_PERSON_EMAIL_INDEX ON "FOREST"."PERSON"(EMAIL) ; CREATE UNIQUE INDEX SQL_PERSON_ID_INDEX ON "FOREST"."PERSON"(ID) ; CREATE TABLE "FOREST"."GROUPS" ( ID int NOT NULL PRIMARY KEY GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1), NAME varchar(50) NOT NULL, DESCRIPTION varchar(300) ) ; CREATE TABLE "FOREST"."PERSON_GROUPS" ( GROUPS_ID int NOT NULL, EMAIL varchar(45) NOT NULL ) ; ALTER TABLE "FOREST"."PERSON_GROUPS" ADD CONSTRAINT FK_PERSON_GROUPS_PERSON FOREIGN KEY (EMAIL) REFERENCES "FOREST"."PERSON"(EMAIL) ; ALTER TABLE "FOREST"."PERSON_GROUPS" ADD CONSTRAINT FK_PERSON_GROUPS_GROUPS FOREIGN KEY (GROUPS_ID) REFERENCES "FOREST"."GROUPS"(ID) ; CREATE INDEX SQL_PERSONGROUPS_EMAIL_INDEX ON "FOREST"."PERSON_GROUPS"(EMAIL) ; CREATE INDEX SQL_PERSONGROUPS_ID_INDEX ON "FOREST"."PERSON_GROUPS"(GROUPS_ID) ;
The Duke’s Tutoring case study uses a singleton bean, ConfigBean, to create its database tables, instead of using SQL commands.
How you add user credentials to the database tables depends on the database that you are using. Duke’s Forest uses an Ant task. The create-tables Ant task for Duke’s Forest adds the user credentials to the tables created in the previous step:
INSERT INTO "FOREST"."PERSON" (FIRSTNAME,LASTNAME,EMAIL,ADDRESS,CITY, PASSWORD,DTYPE) VALUES ('Robert','Exampler','robert@example.com', 'Example street','San Francisco','81dc9bdb52d04dc20036dbd8313ed055', 'Customer'); INSERT INTO "FOREST"."PERSON" (FIRSTNAME,LASTNAME,EMAIL,ADDRESS,CITY, PASSWORD,DTYPE) VALUES ('Admin','Admin','admin@example.com','Example street', 'Belmont','81dc9bdb52d04dc20036dbd8313ed055','Administrator'); INSERT INTO "FOREST"."PERSON" (FIRSTNAME,LASTNAME,EMAIL,ADDRESS,CITY, PASSWORD,DTYPE) VALUES ('Jack','Frost','jack@example.com','Example Blvd', 'San Francisco','81dc9bdb52d04dc20036dbd8313ed055','Customer'); INSERT INTO "FOREST"."PERSON" (FIRSTNAME,LASTNAME,EMAIL,ADDRESS,CITY, PASSWORD,DTYPE) VALUES ('Payment','User','paymentUser@dukesforest.com', '-','-','58175e1df62779046a3a4e2483575937','Customer'); INSERT INTO "FOREST"."GROUPS" (NAME, DESCRIPTION) VALUES ('USERS', 'Users of the store'); INSERT INTO "FOREST"."GROUPS" (NAME, DESCRIPTION) VALUES ('ADMINS', 'Administrators of the store'); INSERT INTO "FOREST"."PERSON_GROUPS" (GROUPS_ID,EMAIL) VALUES (1,'robert@example.com'); INSERT INTO "FOREST"."PERSON_GROUPS" (GROUPS_ID,EMAIL) VALUES (2,'admin@example.com'); INSERT INTO "FOREST"."PERSON_GROUPS" (GROUPS_ID,EMAIL) VALUES (1,'jack@example.com'); INSERT INTO "FOREST"."PERSON_GROUPS" (GROUPS_ID,EMAIL) VALUES (1,'paymentUser@dukesforest.com');
The Duke’s Tutoring case study uses a singleton bean, ConfigBean, to populate its database tables, instead of using SQL commands.
Duke’s Forest uses an Ant task, create-forest-pool, to create the derby_net_forest_forestPool JDBC connection pool for the database:
<target name="create-forest-pool" description="create JDBC connection pool"> <antcall target="create-jdbc-connection-pool"> <param name="pool.name" value="derby_net_forest_forestPool" /> </antcall> </target>
You can also use the Administration Console or the command line to create a connection pool.
Duke’s Forest uses an Ant task, create-forest-resource, to create the jdbc/forest JDBC resource for the database:
<target name="create-forest-resource" depends="create-forest-pool" description="create JDBC resource"> <antcall target="create-jdbc-resource"> <param name="pool.name" value="derby_net_forest_forestPool" /> <param name="jdbc.resource.name" value="jdbc/forest" /> </antcall> </target>
You can also use the Administration Console or the command line to create a JDBC resource.
Duke’s Forest uses an Ant task, create-forest-realm, to create jdbcRealm, the JDBC realm used for user authentication:
<target name="create-forest-realm" depends="create-forest-resource" description="create JDBC realm"> <antcall target="create-jdbc-realm"> <param name="jdbc.resource.name" value="jdbc/forest" /> <param name="jdbc.realm.name" value="jdbcRealm" /> <param name="user.table.name" value="forest.PERSON" /> <param name="user.name.column" value="email" /> <param name="password.column" value="password" /> <param name="group.table" value="forest.GROUPS" /> <param name="group.name.column" value="name" /> <param name="assign.groups" value="USERS,ADMINS" /> <param name="digest.algorithm" value="MD5" /> </antcall> </target>
This task associates the resource with the realm, defines the tables and columns for users and groups used for authentication, and defines the digest algorithm that will be used for storing passwords in the database.
You can also use the Administration Console or the command line to create a realm.
For an enterprise application in an EAR file, modify the glassfish-application.xml file.
For a web application in a WAR file, modify the web.xml file.
For an enterprise bean in an EJB JAR file, modify the glassfish-ejb-jar.xml file.
For example, for the Duke’s Forest application, the web.xml file specifies the jdbcRealm realm:
<login-config> <auth-method>FORM</auth-method> <realm-name>jdbcRealm</realm-name> <form-login-config> <form-login-page>/login.xhtml</form-login-page> <form-error-page>/login.xhtml</form-error-page> </form-login-config> </login-config> <security-constraint> <web-resource-collection> <web-resource-name>Secure Pages</web-resource-name> <description/> <url-pattern>/admin/*</url-pattern> </web-resource-collection> <auth-constraint> <role-name>ADMINS</role-name> </auth-constraint> </security-constraint>
Form-based login is specified for all web pages under /admin. Access to those pages will be allowed only to users in the ADMINS role.
To assign a security role to a group or to a user, add a security-role-mapping element to the application server-specific deployment descriptor, in this case glassfish-web.xml:
<security-role-mapping> <role-name>USERS</role-name> <group-name>USERS</group-name> </security-role-mapping> <security-role-mapping> <role-name>ADMINS</role-name> <group-name>ADMINS</group-name> </security-role-mapping>
Since GlassFish Server users are assigned to groups during the user creation process, this is more efficient than mapping security roles to individual users.
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Legal Notices
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4