WASdev/sample.javaee7.servlet.nonblocking

Name: sample.javaee7.servlet.nonblocking

Owner: WASdev

Description: Demonstrates how to use non-blocking I/O by using new APIs added to ServletInputStream and ServletOutputStream. #JavaEE7

Created: 2015-11-11 08:09:02.0

Updated: 2017-06-07 20:26:01.0

Pushed: 2017-10-24 16:33:10.0

Homepage:

Size: 101

Language: Java

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Sample Java EE 7 - Non-blocking I/O using Servlet 3.1 Build Status

This application demonstrates how to use non-blocking I/O by using new APIs added to ServletInputStream and ServletOutputStream.

The example includes usage of ReadListener and WriteListener interface APIs.

Getting Started

Browse the code to see what it does, or build and run it yourself.

Running in Eclipse
  1. Download and install Eclipse with the WebSphere Developer Tools.
  2. Clone this repository.
  3. Import the sample into Eclipse using File -> Import -> Maven -> Existing Maven Projects option.
  4. Right click on the project and select Run As -> Run on Server option. Find and select the Liberty profile server and press Finish.
  5. Go to: http://localhost:9080/sample.javaee7.servlet.nonblocking/
Running with Maven

This project can be built 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. Execute full Maven build. This will cause Liberty Maven Plug-in to download and install Liberty profile server.

    n clean install
    
  2. To run the server with the Servlet Non-Blocking application execute:

    n liberty:run-server
    

Once the server is running, the application will be available under http://localhost:9080/sample.javaee7.servlet.nonblocking/.

Running with Gradle

This project can also be built and run with [Gradle]. The provided build.gradle file applies the [Liberty Gradle Plug-in] and is configured to automatically download and install the Liberty Java EE Web Profile 7 runtime from Maven Central. The Liberty Gradle Plug-in has built-in tasks that can be used to create, configure, and run the application on the Liberty server.

Use the following steps to run the application with Gradle:

  1. Execute the full Gradle build. The Liberty Gradle Plug-in will download and install the Liberty server.

    gradlew clean build
    
  2. To start the server with the Servlet sample execute:

    gradlew libertyStart
    

    Alternatively, execute the run command:

    gradlew libertyRun --no-daemon
    

Once the server has started, the application will be available under http://localhost:9080/sample.javaee7.servlet.nonblocking.

  1. To stop the server, execute:
    gradlew libertyStop
    

Please refer to the [ci.gradle] repository for documentation about using the Liberty Gradle Plug-in.

Deploying to Bluemix

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

Deploy to Bluemix

Once the application is deployed and running in bluemix, it will be available under http://MYAPPNAME.mybluemix.net/sample.javaee7.servlet.nonblocking/.

Notice

© Copyright IBM Corporation 2015, 2017.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.