Securing a Web Application in NetBeans IDE
This tutorial needs a review. You can edit it in GitHub following these contribution guidelines. |
Contributed by Dan Kolar, Maintained by James Branam and Jeff Rubinoff
This document takes you through the basics of adding security to a web application that is deployed to either the Oracle GlassFish Open Source Edition, Oracle WebLogic, or Apache Tomcat server.
This document shows you how to configure security authentication using a basic login window and also using a login form in a web page. This document takes you through the steps for creating users on the Tomcat server and the GlassFish server . After creating the users, you then create the security roles by setting the security properties in the deployment descriptor. This document also shows how you can use JDBC authentication to secure your application when deploying to the GlassFish server .
Expected duration: 40 minutes
To follow this tutorial, you need the following software and resources.
Software or Resource | Version Required |
---|---|
Java EE version |
|
Version 7 or 8 |
|
Java EE Platform |
Java EE 6 or 7 |
Travel Database |
Not Required |
Java EE-compliant web or application server |
Tomcat web server 7.x or 8.x, Oracle WebLogic 11g, or GlassFish Server Open Source Edition 4.x |
Installing and Configuring the Working Environment
Install and start NetBeans IDE. You can do this tutorial using the bundled Tomcat server or the GlassFish server.
Make sure the server is installed and a server instance is registered with the IDE. You can use the Server Manager to register an installed server instance. (Choose Tools > Servers > Add Server. Select "GlassFish Server <version number>" or "Tomcat <version number> and click Next. Click Browse and locate the installation directory of the application server. Click Finish.)
Creating the Web Application
In this exercise you first create the web application project and the directory structure. You then create some simple html
files in each of the secure directories. The web application uses a basic login authentication for accessing the secure directories. If you want to use a login form for authentication, you can add a jsp
page with the form.
Creating the Secure Directories
-
Choose File > New Project (Ctrl-Shift-N), select Web Application from the Java Web category, and click Next.
-
Name the project
WebApplicationSecurity
. Accept the default settings. -
(Optional) Select the Use Dedicated Folder for Storing Libraries checkbox and specify the location for the libraries folder. See Sharing a Library with Other Users in the Developing Applications with NetBeans IDE for more information on this option.
-
Click Next.
-
Select the server to which you want to deploy your application. Only servers that are registered with the IDE are listed. Click Next.
-
You do not need to add a framework, so click Finish.
-
If you created an EE 6 application, go to the Projects window of the IDE, right-click the project’s node and select New > Other > Web > Standard Deployment Descriptor (web.xml). Accept all the defaults and click through the wizard.
Note: This tutorial shows how to configure security in the deployment descriptor, but EE 6 and EE 7 applications use annotations instead of a deployment descriptor, by default.
-
If you are using the GlassFish or WebLogic server and NetBeans IDE 7.0.1 or later, you need to generate a server-specific descriptor. Right-click the project’s node and select New > Other > GlassFish > GlassFish Descriptor, or New > Other > WebLogic > WebLogic Descriptor. The Create Server-Specific Descriptor dialog opens. Accept all the defaults and click Finish. The server-specific descriptor, named either
glassfish-web.xml
orweblogic.xml
, appears in the project in the Configuration Files folder. -
In the Projects window of the IDE, right-click Web Pages and choose New > Other.
-
In the New File wizard, select Other as Category and Folder as File Type. Click Next.
. In the New Folder wizard, name the folder secureAdmin and click Finish.
The secureAdmin folder appears in the Projects window in the Web Pages folder.
-
Repeat the previous 3 steps to create another folder named secureUser.
-
Create a new
html
file in the secureUser folder by right-clicking the folder secureUser in the Projects window and choosing New > Other. -
Select the HTML file type in the Other category. Click Next.
-
Name the new file pageU and click Finish.
When you click Finish, the file pageU.html
opens in the Source Editor.
-
In the Source Editor, replace the existing code in
pageU.html
with the following code.<html> <head> <title>
User secure area[html-tag]#</title>
</head>
<body>
<h1>#User Secure Area[html-tag]#</h1>
</body>
</html>#
-
Right-click the secureAdmin folder and create a new
html
file named pageA. -
In the Source Editor, replace the existing code in
pageA.html
with the following code.<html> <head> <title>
Admin secure area[html-tag]#</title>
</head>
<body>
<h1>#Admin secure area[html-tag]#</h1>
</body>
</html>#
Creating the JSP Index Page
You now create the JSP index page containing links to the secure areas. When the user clicks on the link they are prompted for the username and password. If you use a basic login, they are prompted by the default browser login window. If you use a login form page, the user enters the username and password in a form.
-
Open
index.jsp
in the Source Editor and add the following links topageA.html
andpageU.html
:[jsp-html-tag]<p>
Request a secure Admin page [jsp-html-tag]#<a# [jsp-html-argument]#href=#[jsp-xml-value]#"secureAdmin/pageA.html"#[jsp-html-tag]#>#here![jsp-html-tag]#</a></p>
<p>#Request a secure User page [jsp-html-tag]#<a# [jsp-html-argument]#href=#[jsp-xml-value]#"secureUser/pageU.html"# [jsp-html-tag]#>#here![jsp-html-tag]#</a></p>#
-
Save your changes.
Creating a Login Form (required for Tomcat, optional for the GlassFish or WebLogic server)
If you want to use a login form instead of the basic login, you can create a jsp
page containing the form. You then specify the login and error pages when configuring the login method.
Important: Tomcat users must create a login form.
-
In the Projects window, right-click the folder Web Pages and choose New > JSP.
-
Name the file
login
, leave the other fields at their default value and click Finish. -
In the Source Editor, insert the following code between the
<body>
tags oflogin.jsp
.
<[jsp-html-tag]#form# [jsp-html-argument]#action=#[jsp-xml-value]#"j_security_check"# [jsp-html-argument]#method=#[jsp-xml-value]#"POST"#[jsp-html-tag]#>#
Username:[jsp-html-tag]#<input# [jsp-html-argument]#type=#[jsp-xml-value]#"text"# [jsp-html-argument]#name=#[jsp-xml-value]#"j_username"#[jsp-html-tag]#><br>#
Password:[jsp-html-tag]#<input# [jsp-html-argument]#type=#[jsp-xml-value]#"password"# [jsp-html-argument]#name=#[jsp-xml-value]#"j_password"#[jsp-html-tag]#>
<input# [jsp-html-argument]#type=#[jsp-xml-value]#"submit"# [jsp-html-argument]#value=#[jsp-xml-value]#"Login"#[jsp-html-tag]#>
</form>#
-
Create a new
html
file namedloginError.html
in the Web Pages folder. This is a simple error page. -
In the Source Editor, replace the existing code in
loginError.html
with the following code.<html> <head> <title>
Login Test: Error logging in[html-tag]#</title>
</head>
<body>
<h1>#Error Logging In[html-tag]#</h1>
<br/>
</body>
</html>#
Creating Users on the Target Server
To be able to use user/password authentication (basic login or form-based login) security in web applications, the users and their appropriate roles have to be defined for the target server. To log in to a server, the user account has to exist on that server.
How you define the users and roles varies according to the target server you specified. In this tutorial the users admin
and user
are used to test the security setup. You need to confirm that these users exist on the respective servers, and that the appropriate roles are assigned to the users.
Defining Users on the GlassFish Server
For this scenario you need to use the Admin Console of the GlassFish server to create two new users named user
and admin
. The user named user
will have limited access to the application, while admin
will have administration privileges.
-
Open the Admin Console by going to the IDE’s Services window and right-clicking Servers > GlassFish server > View Domain Admin Console. The login page for the GlassFish server opens in your browser window. You need to log in using the admin username and password to access the Admin Console.
*Note: *The Application Server must be running before you can access the Admin Console. To start the server, right-click the GlassFish server node and choose Start.
-
In the Admin Console, navigate to Configurations > server-config > Security > Realms > File. The Edit Realm panel opens.
-
Click the Manage Users button at the top of the Edit Realm panel. The File Users panel opens.
-
Click New. The New File Realm User panel opens. Type
user
as the user ID anduserpw01
as the password. Click OK. -
Follow the previous steps to create a user named
admin
with passwordadminpw1
in thefile
realm.
Defining Roles and Users on the Tomcat Web Server
For Tomcat 7, you create a user with the manager-script role and a password for that user when you register the server with NetBeans IDE.
The basic users and roles for the Tomcat server are in tomcat-users.xml
. You can find tomcat-users.xml
in your <CATALINA_BASE>\conf
directory.
Note: You can find your CATALINA_BASE location by right-clicking the Tomcat server node in the Services window and selecting Properties. The Server Properties opens. The location of CATALINA_BASE is in the Connection tab.
Note: If you use Tomcat 6 bundled with earlier versions of the IDE, this server has the ide
user defined with a password and the administrator and manager roles. The password for the user ide
is generated when Tomcat 6 is installed. You can change the password for the user ide
, or copy the password in tomcat-users.xml
.
To add users to Tomcat:
-
Open
<CATALINA_BASE>/conf/tomcat-users.xml
in an editor. -
Add a role named
AdminRole
.
<role rolename="AdminRole"/>
-
Add a role named
UserRole
.
<role rolename="UserRole"/>
-
Add a user named
admin
with the passwordadminpw1
and the roleAdminRole
.
<user username="admin" password="adminpw1" roles="AdminRole"/>
-
Add a user named
user
with the passworduserpw01
and the roleUserRole
.
<user username="user" password="userpw01" roles="UserRole"/>
The tomcat-users.xml
file now looks like this:
<tomcat-users>
<!--
<role rolename="tomcat"/>
<role rolename="role1"/>
<user username="tomcat" password="tomcat" roles="tomcat"/>
<user username="both" password="tomcat" roles="tomcat,role1"/>
<user username="role1" password="tomcat" roles="role1"/>
-->
...
<role rolename="AdminRole"/>
<role rolename="UserRole"/>
<user username="user" password="userpw01" roles="UserRole"/>
<user username="admin" password="adminpw1" roles="AdminRole"/>
[User with manager-script role, defined when Tomcat 7 was registered with the IDE]
...
</tomcat-users>
Defining Users and Groups on the WebLogic Server
For this scenario you first need to use the Admin Console of the WebLogic server to create two new users named user
and admin
. Add these users to the groups userGroup
and adminGroup
, respectively. Later you assign security roles to these groups. The userGroup
will have limited access to the application, while adminGroup
will have administration privileges.
General instructions on adding users and groups to the Web Logic server are in the WebLogic + Administration Console Online Help+.
To add "user" and "admin" users and groups to WebLogic:
-
Open the Admin Console by going to the IDE’s Services window and right-clicking Servers > WebLogic server > View Admin Console. The login page for the GlassFish server opens in your browser window. You need to log in using the admin username and password to access the Admin Console.
*Note: *The Application Server must be running before you can access the Admin Console. To start the server, right-click the WebLogic server node and select Start.
-
In the left pane select Security Realms. The Summary of Security Realms page opens.
-
On the Summary of Security Realms page select the name of the realm (default realm is "myrealm"). The Settings for Realm Name page opens.
-
On the Settings for Realm Name page select Users and Groups > Users. The Users table appears.
-
In the Users table, click New. The Create New User page opens.
-
Type in the name "user" and the password "userpw01". Optionally type in a description. Accept default Authentication Provider.
-
Click OK. You return to the Users table.
-
Click New and add a user with the name "admin" and the password "admin1".
-
Open the Groups tab. The Groups table appears.
-
Click New. The Create a New Group window opens.
-
Name the group userGroup. Accept the default provider and click OK. You return to the Groups table.
-
Click New and create the group adminGroup.
-
Open the Users tab for the next procedure.
Now add the admin
user to adminGroup
and the user
user to userGroup
.
To add users to groups:
-
In the Users tab, click the
admin
user. The user’s Settings page opens. -
In the Settings page, open the Groups tab.
-
In the Parent Groups: Available: table, select
adminGroup
. -
Click the right arrow, >. The
adminGroup
appears in the Parent Groups: Chosen: table.
-
Click Save.
-
Return to the Users tab.
-
Click the
user
user and add it to theuserGroup
.
Configuring the Login Method
When configuring the login method for your application, you can use the login window provided by your browser for basic login authentication. Alternatively, you can create a web page with a login form. Both types of login configuration are based on user/password authentication.
To configure login, you create _security constraints _and assign roles to these security constraints. Security constraints define a set of files. When you assign a role to a constraint, users with that role have access to the set of files defined by the constraint. For example, in this tutorial you assign the AdminRole to the AdminConstraint and the UserRole and AdminRole to the UserConstraint. This means that users with the AdminRole have access to both Admin files and User files, but users with the UserRole have access only to User files.
Note: It is not a general use case to give a separate administrator role access to user files. An alternative is to assign only the UserRole to UserConstraint and on the server side grant the AdminRole to specific users who are also administrators. You should decide how to grant access on a case-by-case basis.
You configure the login method for the application by configuring web.xml
. The web.xml
file can be found in the Configuration Files directory of the Projects window.
Basic Login
When you use the basic login configuration, the login window is provided by the browser. A valid username and password is needed to access the secure content.
The following steps show how to configure a basic login for the GlassFish and WebLogic servers. Tomcat users need to use form login.
To configure basic login:
-
In the Projects window, expand the project’s Configuration Files node and double-click
web.xml
. Theweb.xml
file opens in the Visual Editor. -
Click Security in the toolbar to open the file in Security view.
-
Expand the Login Configuration node and set the Login Configuration to Basic.
*Note: *If you want to use a form , select Form instead of basic and specify the login and login error pages.
-
Enter a realm name, depending on your server.
-
GlassFish: Enter
file
as the Realm Name. This is the default realm name where you created the users on the GlassFish server. -
Tomcat: Do not enter a realm name.
-
WebLogic: Enter your realm name. The default realm is
myrealm
.
-
-
Expand the Security Roles node and click Add to add a role name.
-
Add the following Security Roles:
-
AdminRole
. Users added to this role will have access to thesecureAdmin
directory of the server. -
UserRole
. Users added to this role will have access to thesecureUser
directory of the server.
-
Caution: GlassFish role names must begin with an upper-case letter.
-
Create and configure a security constraint named
AdminConstraint
by doing the following:-
Click Add Security Constraint. A section for a new security constraint appears.
-
Enter
AdminConstraint
for the Display Name of the new security constraint.
-
-
Click Add. The Add Web Resource dialog opens.
.
In the Add Web Resource dialog, set the Resource Name to Admin
and the URL Pattern to /secureAdmin/*
and click OK. The dialog closes.
Note: * When you use an asterisk (), you are giving the user access to all files in that folder.
-
Select Enable Authentication Constraint and click Edit. The Edit Role Names dialog opens.
-
In the Edit Role Names dialog box, select AdminRole in the left pane, click Add and then click OK.
After completing the above steps, the result should resemble the following figure:
-
Create and configure a security constraint named
UserConstraint
by doing the following:-
Click Add Security Constraint to create a new security constraint.
-
Enter
UserConstraint
for the Display Name of the new security constraint. -
Click Add to add a Web Resource Collection.
-
In the Add Web Resource dialog box, set the Resource Name to
User
and the URL Pattern to/secureUser/*
and click OK. -
Select Enable Authentication Constraint and click Edit to edit the Role Name field.
-
In the Edit Role Names dialog box, select AdminRole and UserRole in the left pane, click Add and then click OK. Note: You can also set the timeout for the session in web.xml. To set the timeout, click the General tab of the Visual Editor and specify how long you want the session to last. The default is 30 minutes.
-
Form Login
Using a form for login enables you to customize the content of the login and error pages. The steps for configuring authentication using a form are the same as for the basic login configuration, except that you specify the login and error pages you created.
The following steps show how to configure a login form
-
In the Projects window, double-click
web.xml
located in theWeb Pages/WEB-INF
directory to open the file in the Visual Editor. -
Click Security in the toolbar to open the file in Security view and expand the Login Configuration node.
-
Set the Login Configuration to Form.
-
Set the Form Login Page by clicking Browse and locating
login.jsp
. 5. Set the Form Error Page by clicking Browse and locatingloginError.html
.
-
Enter a realm name, depending on your server.
-
GlassFish: Enter
file
as the Realm Name. This is the default realm name where you created the users on the GlassFish server. -
Tomcat: Do not enter a realm name.
-
WebLogic: Enter your realm name. The default realm is
myrealm
.
-
-
Expand the Security Roles node and click Add to add a role name.
-
Add the following Security Roles:
Server role |
Description |
AdminRole |
Users added to this role have access to the |
UserRole |
Users added to this role have access to the |
-
Create and configure a security constraint named
AdminConstraint
by doing the following:-
Click Add Security Constraint to create a new security constraint.
-
Enter
AdminConstraint
for the Display Name of the new security constraint. -
Click Add to add a Web Resource Collection. 4. In the Add Web Resource dialog box, set the Resource Name to
Admin
and the URL Pattern to/secureAdmin/*
and click OK.
-
Note: * When you use an asterisk (), you are giving the user access to all files in that folder.
-
Select Enable Authentication Constraint and click Edit. The Edit Role Names dialog opens.
-
In the Edit Role Names dialog box, select AdminRole in the left pane, click Add and then click OK.
After completing the above steps, the result should resemble the following figure:
-
Create and configure a security constraint named
UserConstraint
by doing the following:-
Click Add Security Constraint to create a new security constraint.
-
Enter
UserConstraint
for the Display Name of the new security constraint. -
Click Add to add a Web Resource Collection.
-
In the Add Web Resource dialog box, set the Resource Name to
User
and the URL Pattern to/secureUser/*
and click OK. -
Select Enable Authentication Constraint and click Edit to edit the Role Name field.
-
In the Edit Role Names dialog box, select AdminRole and UserRole in the left pane, click Add and then click OK. Note: You can also set the timeout for the session in web.xml. To set the timeout, click the General tab of the Visual Editor and specify how long you want the session to last. The default is 30 minutes.
-
Configuring Server Deployment Descriptors
If you are deploying your application to a GlassFish or WebLogic server, you need to configure the server deployment descriptor to map the security roles defined in web.xml
. The server deployment descriptor is listed under your project’s Configuration Files node in the Projects window.
Configuring the GlassFish Server Deployment Descriptor
The GlassFish server deployment descriptor is named glassfish-web.xml
. The server deployment descriptor is in the Configuration Files folder. If it is not there, create it by right-clicking the project’s node and going to New > Other > GlassFish > GlassFish Deployment Descriptor. Accept all the defaults.
Note that the values you entered in web.xml
are displayed in glassfish-web.xml
. The IDE pulls these values from web.xml
for you.
To configure the GlassFish deployment descriptor:
-
In the Projects window, expand the project’s Configuration Files node and double-click
glassfish-web.xml
. Theglassfish-web.xml
deployment descriptor opens in a special tabbed editor for GlassFish deployment descriptors.
Note: For GlassFish server versions older than 3.1, this file is called sun-web.xml
.
-
Select the Security tab to reveal the security roles.
-
Select the AdminRole security role node to open the Security Role Mapping pane.
.
Click Add Principal and enter admin
for the principal name. Click OK.
-
Select the UserRole security role node to open the Security Role Mapping pane.
-
Click Add Principal and enter
user
for the principal name. Click OK -
Save your changes to
glassfish-web.xml
.
You can also view and edit glassfish-web.xml
in the XML editor by clicking the XML tab. If you open glassfish-web.xml
in the XML editor, you can see that glassfish-web.xml
has the following security role mapping information:
<security-role-mapping> <role-name>
AdminRole[xml-tag]#</role-name>
<principal-name>#admin[xml-tag]#</principal-name>
</security-role-mapping>
<security-role-mapping>
<role-name>#UserRole[xml-tag]#</role-name>
<principal-name>#user[xml-tag]#</principal-name>
</security-role-mapping>#
Configuring the WebLogic Server Deployment Descriptor
The WebLogic deployment descriptor is named weblogic.xml
. Currently, the IDE’s support for GlassFish deployment descriptors is not extended to WebLogic deployment descriptors. Therefore you need to make all changes to weblogic.xml
manually.
The WebLogic server deployment descriptor is in the Configuration Files folder. If it is not there, create it by right-clicking the project’s node and going to New > Other > WebLogic > WebLogic Deployment Descriptor. Accept all the defaults.
Note: For more information about securing web applications on WebLogic, including declarative and programmatic security, see + Oracle Fusion Middleware Programming Security for Oracle WebLogic Server+.
To configure the WebLogic deployment descriptor:
-
In the Projects window, expand the project’s Configuration Files node and double-click
weblogic.xml
. Theweblogic.xml
deployment descriptor opens in the Editor. -
Inside the
<weblogic-web-app>
element, type or paste the following security role assignment elements:[xml-tag]<security-role-assignment> <role-name>
AdminRole[xml-tag]#</role-name>
<principal-name>#adminGroup[xml-tag]#</principal-name>
</security-role-assignment>
<security-role-assignment>
<role-name>#UserRole[xml-tag]#</role-name>
<principal-name>#userGroup[xml-tag]#</principal-name>
</security-role-assignment>#
-
Save your changes to
weblogic.xml
.
Deploying and Running the Application
In the Projects window, right-click the project node and choose Run.
Note: By default, the project has been created with the Compile on Save feature enabled, so you do not need to compile your code first in order to run the application in the IDE. For more information on the Compile on Save feature, see Building Java Projects in the Developing Applications with NetBeans IDE User’s Guide.
After building and deploying the application to the server, the start page opens in your web browser. Choose the secure area which you want to access by clicking either admin or user.
After supplying the user and password, there are three possible results:
-
Password for this user is correct and user has privileges for secured content → secure content page is displayed
* Password for this user is incorrect → Error page is displayed
* Password for this user is correct, but user does not have right to access the secured content → browser displays Error 403 Access to the requested resource has been denied
Summary
In this tutorial, you created a secure web application. You edited security settings using the web.xml and glassfish-web.xml Descriptor editors, creating web pages with secure logins and multiple identities.