How to fix Jersey POST request parameters warning?

后端 未结 9 921
暗喜
暗喜 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:21

    I just had my ajax-function in JQuery set to contentType: "application/x-www-form-urlencoded; charset=UTF-8" because with a prior solution (without Jersey) I had some encoding problems. When I removed that the message was gone and everything worked fine.

提交回复
热议问题