Skip to content

A sample servlet application which responds to HTTP requests with information about the request and server

License

Notifications You must be signed in to change notification settings

cokeSchlumpf/sample.ferret

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ferret

This sample project contains a simple Servlet application called Ferret. Ferret listens for HTTP requests sent to <host>:<port>/ferret[/*], and responds with information about the request and the server.

Running in Eclipse

  1. Download and install Eclipse with the WebSphere Developer Tools.
  2. Create a new Liberty Profile Server. See step 3 for details.
  3. Clone this repository.
  4. Import the sample into Eclipse using File -> Import -> Maven -> Existing Maven Projects option.
  5. Deploy the sample into Liberty server. Right click on the ferret sample and select Run As -> Run on Server option. Find and select the Liberty profile server and press Finish.
  6. Go to: http://localhost:9080/ferret

Running with Maven

This project can be build with Apache Maven. The project uses Liberty Maven Plug-in to automatically download and install Liberty profile runtime from the Liberty repository. 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:

  1. Set the IBM_LIBERTY_LICENSE environment property with the license code found in the Liberty license file. See the following instructions on obtaining the license code.

    $ export IBM_LIBERTY_LICENSE=<license code>
  2. Execute full Maven build. This will cause Liberty Maven Plug-in to download and install Liberty profile server.

    $ mvn clean install
  3. To run the server with the Ferret sample execute:

    $ mvn liberty:run-server

Once the server is running, the application will be available under http://localhost:9080/ferret.

Deploying to Bluemix

Click the button below to deploy your own copy of this application to Bluemix.

Deploy to Bluemix

Notice

© Copyright IBM Corporation 2014.

License

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.

About

A sample servlet application which responds to HTTP requests with information about the request and server

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages