How to fix Jersey POST request parameters warning?

后端 未结 9 925
暗喜
暗喜 2020-12-08 06:50

I\'m building a very simple REST API using Jersey, and I\'ve got a warning in my log files that I\'m not sure about.

WARNING: A servlet POST request,

9条回答
  •  没有蜡笔的小新
    2020-12-08 07:36

    In my case I've fixed this error when I've changed the Object Date to String in the method.

    Error:

    @POST
    @Path("/myPath")
    @Produces(MediaType.APPLICATION_JSON)
    public List myMethod(@FormParam("StartDate") Date date) throws Exception {
    

    Fixed

    @POST
    @Path("/myPath")
    @Produces(MediaType.APPLICATION_JSON)
    public List myMethod(@FormParam("StartDate") String date) throws Exception {
    

提交回复
热议问题