问答详情
源自:5-3 计时交互

为什么获取不了计时的数据 406错误

http://img.mukewang.com/579a359100015aa408350565.jpg


这是什么原因

提问者:qq_换个网名_1 2016-07-29 00:42

个回答

  • Irays
    2016-08-05 17:08:36
    已采纳

    json包问题,

    pom

        <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations -->
            <dependency>
                <groupId>com.fasterxml.jackson.core</groupId>
                <artifactId>jackson-annotations</artifactId>
                <version>2.5.4</version>
            </dependency>

            <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
            <dependency>
                <groupId>com.fasterxml.jackson.core</groupId>
                <artifactId>jackson-core</artifactId>
                <version>2.5.4</version>
            </dependency>

            <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
            <dependency>
                <groupId>com.fasterxml.jackson.core</groupId>
                <artifactId>jackson-databind</artifactId>
                <version>2.5.5</version>
            </dependency>



  • zhouwh
    2017-03-28 23:09:09

    我只加了一个老师的依赖也可以。 

    1、 首先检察一下,controller 中  @RequestMapping  有 produces = {"application/json;charset=UTF-8"}  这句。

    2、 栓查application/json是否写对,是json  不要写成jason

    3、检查@ResponseBody有没有加上

    4、检查<mvc:annotation-driven />  这句有没有在MVC的XML中配置,配置了这名才会开启json支持

  • adai123
    2016-08-29 11:19:21

    http://img.mukewang.com/57c3a9280001c2ed05370470.jpg


    同样是JAVASCRIPT内容都加载不了,进入TIME/NOW,出现下载页,用了楼上改的POM,出现500错误,怎么搞