I have successfully integrated Spring and Jersey with Spring Boot 'start POM servers, and I have several Jersey endpoints. Now I would like to unit test resources. I cannot get MockMvc to work. I get a 404 error when trying to get the resource endpoint.
I know there is a Jersey test environment there, but it seems to start the server. I hope to avoid integration tests and keep it as simple as possible. Can I do this with MockMvc?
source
share