How can I integrate Jersey with TomEE?
问题 I attempt to deploy a very simple RESTful Web Service using Jersey 1.18 within Tomee 1.5.2 WebProfile. My project is fully inspired from the tomee-jersey-eclipselink example that I further simplified by removing the persistence part: the Web Service simply retuns "Hello, World!" @Path("/hello") @RequestScoped public class HelloService { public HelloService() { } @GET public String test() { return "Hello, World!"; } } My dependencies in my POM: <dependencies> <dependency> <groupId>javax<