为了账号安全,请及时绑定邮箱和手机立即绑定

SpringMVC 无法返回 Json 或 Xml,Http 406

SpringMVC 无法返回 Json 或 Xml,Http 406

慕虎7371278 2022-04-28 16:01:31
我已经导入并@ResponseBody添加了 jar 文件,没有任何反应我也使用过<mvc:annotation-driven/>没发生什么事。我整天都在受苦调度程序-servlet.xml<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"       xmlns:context="http://www.springframework.org/schema/context"       xmlns:mvc="http://www.springframework.org/schema/mvc"       xsi:schemaLocation="http://www.springframework.org/schema/beans           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd           http://www.springframework.org/schema/context           http://www.springframework.org/schema/context/spring-context-3.0.xsd           http://www.springframework.org/schema/mvc           http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"       default-autowire="byName">    <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">        <property name="messageConverters">            <list>                <bean class="org.springframework.http.converter.ByteArrayHttpMessageConverter"/>                <bean class="org.springframework.http.converter.StringHttpMessageConverter">                    <property name="supportedMediaTypes">                        <list>                            <value>text/plain;charset=UTF-8</value>                            <value>text/json;charset=UTF-8</value>                            <value>text/xml;charset=UTF-8</value>                        </list>                    </property>                </bean>                <bean class="org.springframework.http.converter.ResourceHttpMessageConverter"/>            </list>        </property>    </bean>    <mvc:resources location="/static/" mapping="/static/**"/>    <mvc:annotation-driven/>    <context:component-scan base-package="org.format.demo.controller" />    <import resource="classpath:springConfig/viewConfig/freemarker.xml"/></beans>
查看完整描述

2 回答

?
陪伴而非守候

TA贡献1757条经验 获得超8个赞

尝试如下更改


   @RequestMapping(value="/testCustomObj", 

                   produces={"application/json; charset=UTF-8"}, 

                   method = RequestMethod.GET)

   @ResponseBody

   public Employee testCustomObj(@RequestParam(value = "id") int id, 

                                 @RequestParam(value = "name") String name)  

我碰巧在 Chrome 中安装了JSONView扩展,所以它可能会添加"application/json"到接受标头中,但我对此表示怀疑。


您可能还想使用Postman之类的工具来完全控制要发送到 REST API 的标头。


查看完整回答
反对 回复 2022-04-28
?
江户川乱折腾

TA贡献1851条经验 获得超5个赞

我找到了我得到 406 的原因,我注释了 bean RequestMappingHandlerAdapter 配置,我发现它有效,然后我在方法 afterPropertiesSet() 中调试 RequestHandlerMapping.java,我调试 this.returnValueHandlers,我发现有 7 个 messageConverters,我没有映射Jackson2HttpMessageConverter 和 Jaxb2RootElementHttpMessageConverter


我缺乏


<bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter"/>

<bean class="org.springframework.http.converter.xml.Jaxb2RootElementHttpMessageConverter"/>

我在 dispatcher-servlet.xml 中添加了两个 bean,然后它就可以工作了。


MappingJackson2HttpMessageConverter 可以解析Json。Jaxb2RootElementHttpMessageConverter 可以解析 Xml。


最终的 dispatcher-servlet.xml 是这样的


<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"

       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

       xmlns:context="http://www.springframework.org/schema/context"

       xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:util="http://www.springframework.org/schema/util"

       xsi:schemaLocation="http://www.springframework.org/schema/beans

           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd

           http://www.springframework.org/schema/context

           http://www.springframework.org/schema/context/spring-context-3.0.xsd

           http://www.springframework.org/schema/mvc

           http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"

       default-autowire="byName">


    <!-- 防止@ResponseBody出现的中文乱码 -->

    <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">

        <property name="messageConverters">

            <list>

                <bean class="org.springframework.http.converter.ByteArrayHttpMessageConverter"/>

                <bean class="org.springframework.http.converter.StringHttpMessageConverter">

                    <property name="supportedMediaTypes">

                        <list>

                            <value>text/plain;charset=UTF-8</value>

                            <value>text/json;charset=UTF-8</value>

                            <value>text/xml;charset=UTF-8</value>

                        </list>

                    </property>

                </bean>

                <bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter"/>

                <bean class="org.springframework.http.converter.xml.Jaxb2RootElementHttpMessageConverter"/>

                <bean class="org.springframework.http.converter.ResourceHttpMessageConverter"/>

            </list>

        </property>

    </bean>


   


    <!-- 防止@ResponseBody出现的中文乱码 -->

    <!-- 启动Spring MVC的注解功能,完成请求和注解POJO的映射 -->

    <mvc:resources location="/static/" mapping="/static/**"/>

    <mvc:annotation-driven/>

    <context:component-scan base-package="org.format.demo.controller" />



    <!--

    <import resource="classpath:springConfig/viewConfig/jsp.xml"/>

    -->

    <import resource="classpath:springConfig/viewConfig/freemarker.xml"/>



</beans>


查看完整回答
反对 回复 2022-04-28
  • 2 回答
  • 0 关注
  • 102 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信