web-dev-qa-db-ja.com

JQuery、Spring MVC @ RequestBody、JSON-連携させる

私はJavaシリアライズに双方向のJSONがしたいです

正常に Java to JSON to JQuery path ...(@ResponseBody)を使用しています。

@RequestMapping(value={"/fooBar/{id}"}, method=RequestMethod.GET)
     public @ResponseBody FooBar getFooBar(
            @PathVariable String id,
            HttpServletResponse response , ModelMap model) {
        response.setContentType("application/json");
...
}

とJQueryで私は使用します

$.getJSON('fooBar/1', function(data) {
    //do something
});

この作品ウェル(例えば、注釈は、すでにすべての回答のおかげで働きます)

JSONはJavaにシリアライズされている_バックRequestBodyを使用してオブジェクト:しかし、私はリバースパスをどのように行うのですか?

関係なく、私がしようとするもの、私は仕事に、このような何かを得ることはできません。

@RequestMapping(value={"/fooBar/save"}, method=RequestMethod.POST)
public String saveFooBar(@RequestBody FooBar fooBar,
        HttpServletResponse response , ModelMap model) {

  //This method is never called. (it does when I remove the RequestBody...)
}

私は、ジャクソンは(それが出て途中でシリアライズ)が正しく設定されていると私はMVCはもちろん駆動注釈として設定されています

動作させるにはどうすればよいですか?まったく可能ですか?やSpring/JSON/jQueryのは、一方向(アウト)ですか?


更新:

このジャクソンの設定を変更しました

<bean id="jsonHttpMessageConverter"
    class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter" />

<!-- Bind the return value of the Rest service to the ResponseBody. -->
<bean
    class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
    <property name="messageConverters">
        <util:list id="beanList">
            <ref bean="jsonHttpMessageConverter" />
<!--            <ref bean="xmlMessageConverter" /> -->              
        </util:list>
    </property>
</bean>

(ほぼ同様の)提案

<bean id="jacksonMessageConverter"
    class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter"></bean>
    <bean
        class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
        <property name="messageConverters">
            <list>
                <ref bean="jacksonMessageConverter" />
            </list>
        </property>
    </bean> 

そして、それはうまくいくようです!私は正確にトリックをしたかわからないが、それは動作します...

70
Eran Medan

登録するだけで十分だと確信しています MappingJacksonHttpMessageConverter

(それを行う最も簡単な方法 XMLの<mvc:annotation-driven />またはJavaの@EnableWebMvcを使用

参照:


これが実際の例です:

Maven POM

<project xmlns="http://maven.Apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.Apache.org/POM/4.0.0 http://maven.Apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion><groupId>test</groupId><artifactId>json</artifactId><packaging>war</packaging>
    <version>0.0.1-SNAPSHOT</version><name>json test</name>
    <dependencies>
        <dependency><!-- spring mvc -->
            <groupId>org.springframework</groupId><artifactId>spring-webmvc</artifactId><version>3.0.5.RELEASE</version>
        </dependency>
        <dependency><!-- jackson -->
            <groupId>org.codehaus.jackson</groupId><artifactId>jackson-mapper-asl</artifactId><version>1.4.2</version>
        </dependency>
    </dependencies>
    <build><plugins>
            <!-- javac --><plugin><groupId>org.Apache.maven.plugins</groupId><artifactId>maven-compiler-plugin</artifactId>
            <version>2.3.2</version><configuration><source>1.6</source><target>1.6</target></configuration></plugin>
            <!-- jetty --><plugin><groupId>org.mortbay.jetty</groupId><artifactId>jetty-maven-plugin</artifactId>
            <version>7.4.0.v20110414</version></plugin>
    </plugins></build>
</project>

フォルダーsrc/main/webapp/WEB-INF

web.xml

<web-app xmlns="http://Java.Sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://Java.Sun.com/xml/ns/j2ee http://Java.Sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    version="2.4">
    <servlet><servlet-name>json</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>json</servlet-name>
        <url-pattern>/*</url-pattern>
    </servlet-mapping>
</web-app>

json-servlet.xml

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
                        http://www.springframework.org/schema/beans/spring-beans.xsd">

    <import resource="classpath:mvc-context.xml" />

</beans>

フォルダーsrc/main/resources:

mvc-context.xml

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    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">

    <mvc:annotation-driven />
    <context:component-scan base-package="test.json" />
</beans>

フォルダーsrc/main/Java/test/json

TestController.Java

@Controller
@RequestMapping("/test")
public class TestController {

    @RequestMapping(method = RequestMethod.POST, value = "math")
    @ResponseBody
    public Result math(@RequestBody final Request request) {
        final Result result = new Result();
        result.setAddition(request.getLeft() + request.getRight());
        result.setSubtraction(request.getLeft() - request.getRight());
        result.setMultiplication(request.getLeft() * request.getRight());
        return result;
    }

}

Request.Java

public class Request implements Serializable {
    private static final long serialVersionUID = 1513207428686438208L;
    private int left;
    private int right;
    public int getLeft() {return left;}
    public void setLeft(int left) {this.left = left;}
    public int getRight() {return right;}
    public void setRight(int right) {this.right = right;}
}

Result.Java

public class Result implements Serializable {
    private static final long serialVersionUID = -5054749880960511861L;
    private int addition;
    private int subtraction;
    private int multiplication;

    public int getAddition() { return addition; }
    public void setAddition(int addition) { this.addition = addition; }
    public int getSubtraction() { return subtraction; }
    public void setSubtraction(int subtraction) { this.subtraction = subtraction; }
    public int getMultiplication() { return multiplication; }
    public void setMultiplication(int multiplication) { this.multiplication = multiplication; }
}

コマンドラインでmvn jetty:runを実行し、POSTリクエストを送信することで、このセットアップをテストできます。

URL:        http://localhost:8080/test/math
mime type:  application/json
post body:  { "left": 13 , "right" : 7 }

Poster Firefoxプラグイン を使用してこれを行いました。

応答は次のようになります。

{"addition":20,"subtraction":6,"multiplication":91}
99

また、あなたが持っていることを確認する必要があります

 <context:annotation-config/> 

sPring構成xmlで。

また、このブログ記事を読むことをお勧めします。とても助かりました。 Springブログ-Spring 3.0のAjax Simplifications

更新:

@RequestBodyが正常に機能している作業コードを確認しました。私の設定にもこのBeanがあります:

<bean id="jacksonMessageConverter" class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter"></bean>
 <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="messageConverters">
  <list>
    <ref bean="jacksonMessageConverter"/>
  </list>
</property>
</bean>

Log4jが何を言っているかを見るのはいいことかもしれません。それは通常より多くの情報を提供し、私の経験から、リクエストのコンテンツタイプが@RequestBodyでない場合、Application/JSONは失敗します。 Fiddler 2を実行してテストするか、Mozilla Live HTTPヘッダープラグインでも役立ちます。

12
danny.lesnik

ここでの答えに加えて...

クライアント側でjqueryを使用している場合、これは私のために働いた:

Java:

@RequestMapping(value = "/ajax/search/sync") 
public String sync(@RequestBody Foo json) {

Jquery(JSON.stringify関数を使用するには、Douglas Crockfordのjson2.jsを含める必要があります):

$.ajax({
    type: "post",
    url: "sync", //your valid url
    contentType: "application/json", //this is required for spring 3 - ajax to work (at least for me)
    data: JSON.stringify(jsonobject), //json object or array of json objects
    success: function(result) {
        //do nothing
    },
    error: function(){
        alert('failure');
    }
});
9

自分でメッセージコンバーターを構成したくない場合は、 @ EnableWebMvcまたは<mv​​c:annotation-driven /> を使用して、ジャクソンをクラスパスに追加すると、SpringがJSON、XML(および他のいくつかのコンバータ)はデフォルトで。さらに、変換、フォーマット、および検証のために一般的に使用される他の機能もいくつか取得できます。

5
matsev

JSON 2およびSpring 3.2.0を使用した呼び出しにCurlを使用する場合は、FAQ here をチェックアウトしてください。 AnnotationMethodHandlerAdapterは廃止され、RequestMappingHandlerAdapterに置き換えられました。

0
AmirHd