MessageBodyReader not found for media type=application/json

后端 未结 8 1609
一生所求
一生所求 2020-12-15 17:10

I have wrote a JAX-RS server and client both use Jersey. I want to sent a collection of my entities to client and I made this steps:

  1. Made entity extends Serial
8条回答
  •  天涯浪人
    2020-12-15 17:40

    Adding this dependency has fixed my error while other suggested answers did not:

    
        org.glassfish.jersey.media
        jersey-media-jaxb
        ${jersey2.version}
    
    

提交回复
热议问题