| Sign In/My Account | View Cart |
Using Tomcat 4 Security Realms
Pages: 1, 2
Now let's actually look at how your newly defined realm affects the /onjava web application. Point your browser at the following URL:
http://localhost:8080/onjava/login.jsp
If everything went according to plan you should see a dialog box similar to the one in Figure 1.
|
Go ahead and enter bob for the User Name, password for the Password, and press "OK." Again, if everything goes according to plan, you should see the login page of the /onjava web application. You now have a Web application that is protected by a security realm that uses the Basic Authentication method to authenticate its users.
The second Realm implementation provided with Tomcat is a JDBC realm. The class that implements the JDBC realm is org.apache.cataline.realm.JDBCRealm. The JDBCRealm class is much like the MemoryRealm discussed in the previous section, with the exception of where it stores its collection of users. A JDBCRealm stores all of its users in a user-defined, JDBC-compliant database. There are several steps involved when setting up a JDBC realm, but once it is configured it is really simple to manage.
Before you begin configuring Tomcat to use a JDBCRealm, you must first create a database to hold your collection of users. Our user database is going to contain three tables. The first table is the users table. The users table contains the user name and password for each of our users. Table 2 contains the description of the users table.
Table 2. The users Table Definition | |
| Column | Description |
user_name |
The user_name column contains a string representing the username that will be used in the login form. The user_name has a type of varchar(12). |
user_pass |
The user_pass column contains a string representing the user's password. The user_pass has a type of varchar(12). |
The second table in the users database is the roles table. The roles table contains all of the possible roles for the users defined in this database. The roles table contains a single column, role_name, that is a varchar(12) string representing each role name.
The last table in the users database is the user_roles table. The user_roles table is a mapping table between the roles and users defined in this database. Table 3 contains the table definition for the user_roles table.
Table 3. The user_roles Table Definition. | |
| Column | Description |
user_name |
The user_name column contains a string representing the username that will be used in the login form. The user_name has a type of varchar(12). |
role_name |
The role_name column contains a string representing the user's role. The role_name has a type of varchar(12). |
The contents of each of the users database's tables are listed in Tables 4, 5, and 6.
Table 4. The Contents of the users Table | |
user_name |
user_pass |
| robert | password |
| bob | password |
| tomcat | password |
| joe | $joe$ |
Table 5. The Contents of the roles Table | |
user_name |
|
| onjava | |
| manager | |
| tomcat | |
Table 6. The Contents of the user_roles Table | |
user_name |
user_pass |
| bob | onjavauser |
| joe | onjavauser |
| joe | manager |
| tomcat | tomcat |
| robert | onjavauser |
Now that you have defined the users database, you can actually create the physical database. Before you can create the users database, you will need to download and install the MySQL server, which can be found at http://www.mysql.com. You should also download the latest JDBC driver for MySQL, which can also be found at the previously mentioned Web site.
Note: For this example we are using MySQL. You can use any JDBC-compliant database server of your choosing.
After you have MySQL installed, you need to complete the following steps to create and configure a MySQL Users database:
Start the mysql client found in the <mysql_home>/bin/ directory.
Create the Users database, which will be explicitly named tomcatusers, by executing the following command:
create database tomcatusers;
Create the users table using the following command:
create table users
(
user_name varchar(15) not null primary key,
user_pass varchar(15) not null
);
Create the roles table using the following command:
create table roles
(
role_name varchar(15) not null primary key
);
Create the user_roles table using the following command:
create table users
(
user_name varchar(15) not null,
role_name varchar(15) not null,
primary key(user_name, role_name)
);
Insert the user data into the users table, by executing the following commands:
insert into users values("bob", "password");
insert into users values("joe", "$joe$");
insert into users values("robert", "password");
insert into users values("tomcat", "password");
Insert the roles data into the roles table with the following commands:
insert into roles values("onjavauser");
insert into roles values("manager");
insert into roles values("tomcat");
Insert the user roles data into the user_roles table with the following commands:
insert into user_roles values("bob", "onjavauser");
insert into user_roles values("joe", "onjavauser");
insert into user_roles values("joe", "manager");
insert into user_roles values("robert", "onjavauser");
insert into user_roles values("tomcat", "tomcat");
Now that you have a container of users, let's configure Tomcat to use the JDBC container instead of the previously configured MemoryRealm. The steps involved in configuring a JDBCRealm are described in the following list.
Open <tomcat_home>/conf/server.xml and place comment tags around the previously uncommented <realm> element.
<!-- <Realm className="org.apache.catalina.realm.MemoryRealm" /> -->
Place the following code snippet directly below the previously referenced <realm> element:
<realm classname="org.apache.catalina.realm.JDBCRealm" debug="99"
drivername="org.gjt.mm.mysql.Driver"
connectionurl="jdbc:mysql://localhost/tomcatusers?user=test;password=test"
usertable="users" usernamecol="user_name" usercredcol="user_pass"
userroletable="user_roles" rolenamecol="role_name"/>
Make sure that the JAR file containing the JDBC driver referenced by the driverName attribute is placed in Tomcat's CLASSPATH. If you are using the JDBC-ODBC bridge, the driver will already be in Tomcat's CLASSPATH. You will also need to replace the user and password values with the appropriate values for your database installation. This new <realm> entry defines a JDBCRealm that leverages our database as its container of users. The attributes used in the <realm> element, with additional optional attributes, are described in Table 7.
Table 7. The Attributes of the <Realm> Element | |
| Attribute | Description |
classname |
The fully qualified class name of the Realm implementation. |
driverName |
The name of the driver used to connect to the database containing the users. |
connectionURL |
The URL referencing the database containing the users. |
connectionName |
The username to use when connecting to the database. If you are using MySQL, you can encode the username directly on the connectionURL. |
connectionPassword |
The password to use when connecting to the database. Again, if you are using MySQL, you can encode the password directly on the connectionURL. |
userTable |
The database table containing the user's information. |
userNameCol | The column in the userTable that references the user's username. |
userCredCol |
The column in the userTable that references the user's password. |
userRoleTable |
The database table containing the mapping between the userTable and the table containing the possible user roles. |
roleNameCol |
The column in the userRoleTable that contains a roles given to a user |
To complete this configuration change, stop and restart the Tomcat server.
That is all there is to it; your Web application is now protected by a JDBCRealm. To test this change, try logging in to the /onjava Web application, entering a username from the users table that has a role of onjavauser. You should see a dialog similar to Figure 1 above.
James Goodwill is the co-Founder of Virtuas Solutions, LLC, a Colorado-based software consultancy.
Read more Using Tomcat columns.
Return to ONJava.com.
Showing messages 1 through 48 of 48.
Dec 1, 2004 10:11:43 AM org.apache.catalina.realm.JDBCRealm authenticate
SEVERE: Exception performing authentication
java.sql.SQLException: org.gjt.mm.mysql.Driver
at org.apache.catalina.realm.JDBCRealm.open(JDBCRealm.java:589)
at org.apache.catalina.realm.JDBCRealm.authenticate(JDBCRealm.java:344)
CREATE TABLE users (
user_name VARCHAR(15) PRIMARY KEY,
user_pass VARCHAR(15) NOT NULL
);
CREATE TABLE roles (
role_name VARCHAR(15) PRIMARY KEY
);
CREATE TABLE user_roles (
user_name VARCHAR(15) REFERENCES users ON DELETE CASCADE,
role_name VARCHAR(15) REFERENCES roles ON DELETE CASCADE,
PRIMARY KEY(user_name, role_name)
);
create table users
(create table user_roles
(