2

Spring 3.2 MVC アプリケーションに取り組んでいます。これはかなり一般的なセットアップですが、私の問題は、コントローラー メソッドから JSON オブジェクトを返そうとすると 406 ステータス エラーが発生することです。

イライラする部分は、1 つを除くすべてのメソッドからサーバーからその応答を取得することです。私が含めたコードは、Web で見つけた変更された Spring MVC json の例です。パス変数を使用したサンプルのコントローラー メソッドは期待どおりに機能しますが、コントローラーに追加した追加のメソッドは機能しません。

サンプル コードに加えたその他の唯一の変更は、pom. jackson の依存関係を最新バージョンにアップグレードしました。

それで、私は何が欠けていますか?クラスパスにジャクソンマッパージャーがあります。<mvc:annotation-driven />サーブレットでディレクティブを使用しており@ResponseBody、各コントローラー メソッドで注釈を使用しています。

どんな助けでも大歓迎です!

ディスパッチャ サーブレット:

    <?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:mvc="http://www.springframework.org/schema/mvc"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="
    http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
    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">

    <context:component-scan base-package="uk.co.jeeni" />

    <mvc:annotation-driven />

    </beans>

pom.xml:

    <?xml version="1.0" encoding="UTF-8"?>
    <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
     xmlns="http://maven.apache.org/POM/4.0.0"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<modelVersion>4.0.0</modelVersion>

<groupId>uk.co.jeeni</groupId>
<artifactId>spring-json</artifactId>
<version>1.0.0</version>
<packaging>war</packaging>

<name>Spring 3 MVC JSON Example</name>

<properties>
    <spring.version>3.2.1.RELEASE</spring.version>
</properties>

<dependencies>
    <!--
      Jackson mapper is used by spring to convert
      Java POJOs to JSON strings.
    -->
    <dependency>
        <groupId>org.codehaus.jackson</groupId>
        <artifactId>jackson-mapper-asl</artifactId>
        <version>1.9.12</version>
    </dependency>

    <!-- START: Spring web -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-core</artifactId>
        <version>${spring.version}</version>
    </dependency>

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-web</artifactId>
        <version>${spring.version}</version>
    </dependency>

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-webmvc</artifactId>
        <version>${spring.version}</version>
    </dependency>
    <!-- END: Spring web -->
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>2.3.2</version>
            <configuration>
                <source>1.5</source>
                <target>1.5</target>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.tomcat.maven</groupId>
            <artifactId>tomcat7-maven-plugin</artifactId>
            <version>2.1</version>
        </plugin>
  </plugins>
    <finalName>spring-mvc-json</finalName>
</build>

コントローラ:

    package uk.co.jeeni;

    import org.springframework.stereotype.Controller;
    import org.springframework.web.bind.annotation.PathVariable;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RequestMethod;
    import org.springframework.web.bind.annotation.ResponseBody;

    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;


    @Controller
    public class JsonService {

    private static Map<String, Person> data = new HashMap<String, Person>();
    static{
    data.put("ADAM", new Person("Adam", "Davies", 42));
    data.put("JANE", new Person("Jane", "Harrison", 35));
    }

    @RequestMapping(value="{name}", method = RequestMethod.GET)
    public @ResponseBody Person getPerson(@PathVariable String name){
    Person p = new Person(name, name, 105);//data.get(name.toUpperCase());
    return p;
    }


@RequestMapping(value="/testJson.html", method=RequestMethod.GET)
public @ResponseBody List<Person> testJson()
{
    List<Person> people = new ArrayList<Person>();

    for(int i=0;i<10;i++)
    {
        Person p = new Person("Firstname", "Lastname", i);
        people.add(p);
    }

    return people;
}

@ResponseBody
@RequestMapping(value="testJsonPojo.html", method=RequestMethod.GET)
public Person testJsonPojo()
{
    Person individual = new Person("Firstname", "Lastname", 105);

    return individual;
}
}

Person.java:

    package uk.co.jeeni;

    public class Person {
    private String firstName;
    private String lastName;
    private int age;

    public Person(String firstName, String lastName, int age) {
    this.firstName = firstName;
    this.lastName = lastName;
    this.age = age;
    }

    public String getFirstName() {
    return firstName;
    }

    public void setFirstName(String firstName) {
    this.firstName = firstName;
    }

    public String getLastName() {
    return lastName;
    }

    public void setLastName(String lastName) {
    this.lastName = lastName;
    }

    public int getAge() {
    return age;
    }

    public void setAge(int age) {
    this.age = age;
    }
}
4

2 に答える 2

1

ここで回答されている 3.2 で導入された mvc:annotations に問題がある可能性があります。

https://stackoverflow.com/a/13939290/3014094

Spring 3.2 で必要な mvc:annotations への追加の変更があります。リクエストの拡張子に基づいてメディア タイプを自動的に割り当てようとしています。JSONにマッピングされていない /doSomething.html である可能性が高いと思います。

MVC スプリング構成を更新して、この自動マッピングをオフにします

<mvc:annotation-driven content-negotiation-manager="contentNegotiationManager" />
<bean id="contentNegotiationManager"
    class="org.springframework.web.accept.ContentNegotiationManagerFactoryBean">
    <!-- Turn off working out content type based on URL file extension, should 
        fall back to looking at the Accept headers -->
    <property name="favorPathExtension" value="false" />
</bean>
于 2013-11-21T10:40:31.190 に答える