spring带有responsebody的prefixjson

发布于 2024-10-07 17:05:01 字数 278 浏览 5 评论 0原文

当控制器方法返回是 @responsebody 时,即使我放了

<bean
    class="org.springframework.web.servlet.view.json.MappingJacksonJsonView">
     <property name="prefixJson" value="true" />   
</bean>  

也不会 && {}插入到json数据的前面。有人知道什么是理由吗?

when controller method return is @responsebody , even if i put

<bean
    class="org.springframework.web.servlet.view.json.MappingJacksonJsonView">
     <property name="prefixJson" value="true" />   
</bean>  

there will no && {} insert at the front of json data. anyone knows what is reason?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无法言说的痛 2024-10-14 17:05:01

@RequestBody/@ResponseBody 中的 JSON 由在 AnnotationMethodHandlerAdapter.messageConverters 中配置的 MappingJacksonHttpMessageConverter 处理。

在不干扰其他功能的情况下配置它的简单方法是创建一个 BeanPostProcessor 来拦截 AnnotationMethodHandlerAdapter 的创建,例如,请参阅 此处

JSON in @RequestBody/@ResponseBody is handled by MappingJacksonHttpMessageConverter which is configured in AnnotationMethodHandlerAdapter.messageConverters.

The easy way to configure it without interference with other features is to create a BeanPostProcessor to intercept creation of AnnotationMethodHandlerAdapter, see, for example, here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文