Low overhead Java Web Services container?

Posted by trojanfoe on Stack Overflow See other posts from Stack Overflow or by trojanfoe
Published on 2010-05-15T10:26:21Z Indexed on 2010/05/15 10:34 UTC
Read the original article Hit count: 204

Filed under:
|
|
|

I want to provide a Java-based Web Service, but I don't require the features of a full-blown J2EE Application Server. I would like it to start as quickly as possible, though that's not a hard requirement. The Web Service will handle multiple connections and require access to an Oracle database so it will at least require a thread pool and database connection pool. I may want to put a JSP interface onto it later to provide an internal maintainence interface.

I have looked at Jetty with an Apache CXF stack, but it looks like I'll have to do a fair amount configuration before even coding the web service - Will it be worth it? Will it even work? Should I forget about the complexity and simply go with JBoss/Weblogic/etc and put up with the bloat and extra start-up time?

© Stack Overflow or respective owner

Related posts about java

Related posts about web-services