This sample demonstrates injection of an EJB into a servlet. The application consists of a servlet and stateless session bean. The servlet uses annotations to inject the stateless session bean, and then performs a call on the hello method of the bean.
This sample can be installed onto runtime versions 8.5.5.0 and later.
- Clone this project and import into Eclipse as an 'Existing Maven Project'.
- Right-click the project and select Run As > Maven Clean.
- Right-click the project and select Run As > Maven Install.
- Right-click the project and select Run As -> Run on Server.
- You should see the following in the console:
Application EJBSample started in XX.XX seconds.
This project can be built with Apache Maven. The project uses Liberty Maven Plug-in to automatically download and install Liberty with Java EE7 Web Profile runtime from Maven Central. Liberty Maven Plug-in is also used to create, configure, and run the application on the Liberty server.
Use the following steps to run the application with Maven:
-
Execute full Maven build. This will cause Liberty Maven Plug-in to download and install Liberty profile server.
$ mvn clean install
-
To run the server with the Servlet sample execute:
$ mvn liberty:run-server
In your browser, enter the URL for the application: http://localhost:9132/ejbservlet/ (where port 9132 assumes the httpEndpoint provided in the sample server.xml has not been modified). In your browser, you should see the message "Hello EJB World".
© Copyright IBM Corporation 2017.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.