JAX-RS JSON Rest Service with Jersey Example

You may also like...

Subscribe
Notify of
guest
2 Comments
Oldest
Newest
Inline Feedbacks
View all comments
readerwriter2015
readerwriter2015
February 22, 2018 09:38

You have forgotten to mention servlet init-param for com.sun.jersey.spi.container.servlet.ServletContainer. it should be there as follows
in servlet configuration in web.xml

<init-param>
    <param-name>com.sun.jersey.config.property.packages</param-name>
    <param-value>com.memorynotfound.rs</param-value>
</init-param>
2
0
Would love your thoughts, please comment.x
()
x