Issue
I use Tomcat in production.
Are Jetty and Winstone (https://stackoverflow.com/questions/1515654/what-is-a-lightweight-fast-java-servlet-container) suitable for production use?
I'm happy to let go of features in return for simplicity. Servlets and filters are probably sufficient and the server isn't heavily loaded, so interested to experiment with running it on a minimalist platform. Sticking with Tomcat is also fine.
Solution
RE: Jetty
Short Answer: Yes
Long Answer: Yes, of course...many companies use jetty in production, either in its distribution form or embedded into their applications. In fact, I just updated this jetty powered page on the eclipse site.
http://www.eclipse.org/jetty/powered/
The about page with some additional info:
http://www.eclipse.org/jetty/about.php
and finally a 'Why Choose Jetty?' link:
https://www.webtide.com/choose/jetty.jsp
Answered By - jesse mcconnell