ホームページ >Java >&#&チュートリアル >双方向シリアル化のために JQuery、Spring MVC の @RequestBody、および JSON を統合するにはどうすればよいですか?
JQuery を使用するために Java オブジェクトを JSON にシリアル化するのは簡単かもしれませんが、逆のパス、つまり解析を行う必要があります。 JSON とそれを Java オブジェクトに変換することは、課題を引き起こす可能性があります。この記事では、この双方向シリアル化を実現するために必要な手順について説明します。
Spring MVC @RequestBody を使用して JSON を Java オブジェクトに逆シリアル化するには、MappingJacksonHttpMessageConverter を登録することが必須です。これは手動で行うこともできますが、最も簡単な方法は
次の例を考えてみましょう。これは、双方向 JSON シリアル化の完全なソリューションを示しています。
<!-- Spring MVC --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>3.0.5.RELEASE</version> </dependency> <!-- Jackson --> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-mapper-asl</artifactId> <version>1.4.2</version> </dependency>
<servlet-mapping> <servlet-name>json</servlet-name> <url-pattern>/*</url-pattern> </servlet-mapping> #### Spring Bean Configuration
<import resource="classpath:mvc-context.xml" />
#### `mvc-context.xml`
<mvc:annotation-driven /> <context:component-scan base-package="test.json" />
#### Controller
@Controller
@RequestMapping("/test")
パブリック クラス TestController {
@RequestMapping(method = RequestMethod.POST, value = "math") @ResponseBody public Result math(@RequestBody final Request request) {...}
}
#### Domain Objects
パブリック クラス リクエスト {
// ... fields and getters/setters ...
}
パブリック クラス 結果 {
// ... fields and getters/setters ...
}
#### Testing the Setup Using the Poster Firefox plugin, send a POST request to the following URL:
URL: http://localhost:8080/test/math
mime タイプ: application/json
投稿本文: { "left": 13 , "right" : 7 }
#### Expected Response
{"加算":20,"減算":6,"乗算":91}
以上が双方向シリアル化のために JQuery、Spring MVC の @RequestBody、および JSON を統合するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。