Author: Sherif F. Makary
Level: Intermediate
Technologies: EJB, Security
Summary: The ejb-security
quickstart demonstrates the use of Java EE declarative security to control access to Servlets and EJBs in JBoss EAP.
Target Product: JBoss EAP
Source: https://github.com/jbossas/eap-quickstarts/
The ejb-security
quickstart demonstrates the use of Java EE declarative security to control access to Servlets and EJBs in Red Hat JBoss Enterprise Application Platform.
This quickstart takes the following steps to implement EJB security:
-
Define the security domain. This can be done either in the
security
subsytem of thestandalone.xml
configuration file or in theWEB-INF/jboss-web.xml
configuration file. This quickstart uses theother
security domain, which is provided by default in thestandalone.xml
file.<security-domain name="other" cache-type="default"> <authentication> <login-module code="Remoting" flag="optional"> <module-option name="password-stacking" value="useFirstPass"/> </login-module> <login-module code="RealmDirect" flag="required"> <module-option name="password-stacking" value="useFirstPass"/> </login-module> </authentication> </security-domain>
-
Add the
@SecurityDomain("other")
security annotation to the EJB declaration to tell the EJB container to apply authorization to this EJB. -
Add the
@RolesAllowed({ "guest" })
annotation to the EJB declaration to authorize access only to users withguest
role access rights. -
Add the
@RolesAllowed({ "guest" })
annotation to the Servlet declaration to authorize access only to users withguest
role access rights. -
Add a
<login-config>
security constraint to theWEB-INF/web.xml
file to force the login prompt. -
Add an application user with
guest
role access rights to the EJB. This quickstart defines a userquickstartUser
with passwordquickstartPwd1!
in theguest
role. Theguest
role matches the allowed user role defined in the@RolesAllowed
annotation in the EJB. -
Add a second user that has no
guest
role access rights.
The application this project produces is designed to be run on Red Hat JBoss Enterprise Application Platform 7.1 or later.
All you need to build this project is Java 8.0 (Java SDK 1.8) or later and Maven 3.3.1 or later. See Configure Maven for JBoss EAP 7.1 to make sure you are configured correctly for testing the quickstarts.
In the following instructions, replace EAP7_HOME
with the actual path to your JBoss EAP installation. The installation path is described in detail here: Use of EAP7_HOME and JBOSS_HOME Variables.
Using the add-user utility script, you must add the following users to the ApplicationRealm
:
UserName | Realm | Password | Roles |
---|---|---|---|
quickstartUser | ApplicationRealm | quickstartPwd1! | guest |
user1 | ApplicationRealm | password1! | app-user |
The first application user has access rights to the application. The second application user is not authorized to access the application.
To add the application users, open a command prompt and type the following commands:
For Linux:
EAP7_HOME/bin/add-user.sh -a -u 'quickstartUser' -p 'quickstartPwd1!' -g 'guest'
EAP7_HOME/bin/add-user.sh -a -u 'user1' -p 'password1!' -g 'app-user'
For Windows:
EAP7_HOME\bin\add-user.bat -a -u 'quickstartUser' -p 'quickstartPwd1!' -g 'guest'
EAP7_HOME\bin\add-user.bat -a -u 'user1' -p 'password1!' -g 'app-user'
If you prefer, you can use the add-user utility interactively. For an example of how to use the add-user utility, see the instructions located here: Add an Application User.
-
Open a command prompt and navigate to the root of the JBoss EAP directory.
-
The following shows the command line to start the server:
For Linux: EAP7_HOME/bin/standalone.sh For Windows: EAP7_HOME\bin\standalone.bat
-
Make sure you have started the JBoss EAP server as described above.
-
Open a command prompt and navigate to the root directory of this quickstart.
-
Type this command to build and deploy the archive:
mvn clean install wildfly:deploy
-
This will deploy
target/ejb-security.war
to the running instance of the server.
The application will be running at the following URL http://localhost:8080/ejb-security/.
When you access the application, you are presented with a browser login challenge.
-
If you attempt to login with a user name and password combination that has not been added to the server, the login challenge will be redisplayed.
-
When you login successfully using
quickstartUser
/quickstartPwd1!
, the browser displays the following security info:Successfully called Secured EJB Principal : quickstartUser Remote User : quickstartUser Authentication Type : BASIC
-
Now close and reopen the brower session and access the application using the
user1
/password1!
credentials. In this case, the Servlet, which only allows theguest
role, restricts the access and you get a security exception similar to the following:HTTP Status 403 - Access to the requested resource has been denied type Status report message Access to the requested resource has been denied description Access to the specified resource (Access to the requested resource has been denied) has been forbidden.
-
Next, change the EJB (SecuredEJB.java) to a different role, for example,
@RolesAllowed({ "other-role" })
. Do not modify theguest
role in the Servlet (SecuredEJBServlet.java). Build and redeploy the quickstart, then close and reopen the browser and login usingquickstartUser
/quickstartPwd1!
. This time the Servlet will allow theguest
access, but the EJB, which only allows the roleother-role
, will throw an EJBAccessException:HTTP Status 500 message description The server encountered an internal error () that prevented it from fulfilling this request. exception javax.ejb.EJBAccessException: WFLYEJB0364: Invocation on method: public java.lang.String org.jboss.as.quickstarts.ejb_security.SecuredEJB.getSecurityInfo() of bean: SecuredEJB is not allowed
-
Make sure you have started the JBoss EAP server as described above.
-
Open a command prompt and navigate to the root directory of this quickstart.
-
When you are finished testing, type this command to undeploy the archive:
mvn wildfly:undeploy
You can also start the server and deploy the quickstarts or run the Arquillian tests from Eclipse using JBoss tools. For general information about how to import a quickstart, add a JBoss EAP server, and build and deploy a quickstart, see Use JBoss Developer Studio or Eclipse to Run the Quickstarts.
- Be sure to Add the Application Users as described above.
- To deploy the server project, right-click on the
ejb-security
project and chooseRun As
-->Run on Server
. - You are presented with a browser login challenge. Enter the credentials as described above to access and test the running application.
If you want to debug the source code of any library in the project, run the following command to pull the source into your local repository. The IDE should then detect it.
mvn dependency:sources