JSON parse error: Unexpected end-of-input in VALUE_STRING; nested exception is com.fasterxml.jackson

在外部调用项目接口时,接口和参数都没有问题,发现出现了如下错误:

JSON parse error: Unexpected end-of-input in VALUE_STRING; nested exception is com.fasterxml.jackson_第1张图片::

环境:springBoot 

本人此问题出现的原因是在springBoot 项目中加入了xss过滤拦截,而请求接口带的参数刚好在拦截名单中。

解决方法,在拦截时加白名单,如图:

JSON parse error: Unexpected end-of-input in VALUE_STRING; nested exception is com.fasterxml.jackson_第2张图片

JSON parse error: Unexpected end-of-input in VALUE_STRING; nested exception is com.fasterxml.jackson_第3张图片

在下面的位置将请求路径加入白名单,发现bug解决

JSON parse error: Unexpected end-of-input in VALUE_STRING; nested exception is com.fasterxml.jackson_第4张图片

你可能感兴趣的:(异常处理,Java,笔记,bug,java,spring,boot,xss)