JSON/Spring MVCの新機能で、Spring MVCコントローラへのAJAX呼び出しの簡単な例を取得しようとしていますが、 。SpringでJQuery/Ajaxを使用したJSONリクエスト
インターネットを精査した結果、これは通常、適切なコンテンツタイプを設定しないことによって発生することがわかりました。しかし、私はそれを行っています。ここで
私のAJAX呼び出しは次のとおりです。
//validate the object
var urlString = "/ajax/add/";
$.ajax({
type:"POST",
url: urlString,
contentType: "application/json; charset=utf-8",
dataType: "json",
data: {value1: 'apples', value2 : 'oranges'},
success: function(result){
alert("success");
},
error: function(jqXHR, textStatus, errorThrown){
alert("error:" + textStatus + " exception:" + errorThrown);
}
}) ;
そして、私のコントローラ:
@Controller
itpublic class AddController {
private static Logger m_log = null;
@RequestMapping(value = "/ajax/add")
public String handle(@RequestBody String json){
DummyClass dummyRequest;
try {
ObjectMapper mapper = new ObjectMapper();
dummyRequest = mapper.readValue(json, DummyClass.class);
m_log.info("Value1: " + dummyRequest.getValue1());
m_log.info("Value2: " + dummyRequest.getValue2());
} catch (Exception e) {
}
finally{
}
return "called";
}
誰も私を助けることはできますか?
編集ここ
は、私は春を設定するために使用私の状況です:
<?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:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-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="com.project.do" />
<!--<mvc:annotation-driven/> -->
<bean class="com.project.do.interceptors.handler.mapping.HandlerInterceptorAnnotationAwareHandlerMapping "/>
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" />
<bean class="com.project.do.viewresolver.ProjectViewResolver" >
<property name="tilesResolver" ref="tilesResolver" />
<property name="jspResolver" ref="jspResolver" />
</bean>
<bean id="tilesResolver" class ="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.tiles2.TilesView" />
<property name="order" value="2" />
</bean>
<bean id="jspResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
<property name="order" value="3" />
</bean>
<bean id ="tilesConfigurer" class="org.springframework.web.servlet.view.tiles2.TilesConfigurer">
<property name="definitions" value="/WEB-INF/tiles/tiles.xml" />
<property name="preparerFactoryClass" value="org.springframework.web.servlet.view.tiles2.SpringBeanPreparerFactory"/>
</bean>
<mvc:resources mapping="/css/**" location="/css/" />
<mvc:resources mapping="/js/**" location="/js/" />
<mvc:resources mapping="/images/**" location="/images/" />
<mvc:resources mapping="/javascript/**" location="/javascript/" />
<mvc:resources mapping="/scripts/**" location="/scripts/" />
<mvc:resources mapping="/styles/**" location="/styles/" />
<mvc:resources mapping="/help/**" location="/help/" />
<!-- <mvc:view-controller path="/" view-name="welcome"/> -->
私はパッケージcom.projectにAjaxでの作業コントローラーを持っていることに注意してください.do.workingですが、AjaxとJSONを使用していないControllerは同じパッケージにあります。com.project.do.not.working
以下のように変更してみてください?質問を編集して設定の詳細を追加することができますか(新しい@Configurationスタイルを使用していない場合はおそらくXMLファイル)。 – andyb
私はSpringの設定に使用されたコンテキストを添付しました。ありがとうございました! – kjl
RequestBodyを@RequestParam String value1、..(at)RequestParam String value2に置き換えることはできますか?あなたはRequestMappingの中にmethod = RequestMethod.POSTを持っていたいと思います(raddykrishのように)。 – Stealth