Subhrajyoti Majumder
Subhrajyoti Majumder

Reputation: 41200

Jetty And Netty integration

I want to build a nio based java web server. Jetty is light weighted java server and Netty is an asynchronous event-driven network application nio framework. can any one help me to integrate this two?

Upvotes: 1

Views: 2567

Answers (2)

Ravindranath Akila
Ravindranath Akila

Reputation: 59

Finagle, you can easily, and within minutes, spin up a Netty based web server using Finagle. Finagle is an open source project by Twitter.

Upvotes: 1

Norman Maurer
Norman Maurer

Reputation: 211

You could build up your own webserver by using only netty.

See the examples for this: http://docs.jboss.org/netty/3.2/xref/org/jboss/netty/example/http/

Upvotes: 1

Related Questions