リクエストのコンテンツ タイプに応じて json または xml を返す RESTful Web サービスを作成しようとしています。
私のコントローラーは次のようになります。
@Controller
public class RESTController {
@RequestMapping(value="/rest/{id}", method=RequestMethod.GET)
@ResponseBody
public User getUser(@PathVariable Long id){
User user = .....
return user;
}
私のユーザークラスは次のようになります。
@XStreamAlias("user")
public class User {
private long id;
private String firstName;
private String lastName;
other setters and getters..............
}
最後に、私の Servlet.xml は次のようになります。
<mvc:annotation-driven />
<context:annotation-config />
<context:component-scan base-package="com.vanilla.rest.controllers" />
<bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
<property name="ignoreAcceptHeader" value="true" />
<property name="favorPathExtension" value="false" />
<property name="order" value="1" />
<property name="mediaTypes">
<map>
<entry key="xml" value="application/xml" />
<entry key="json" value="application/json" />
</map>
</property>
<property name="defaultViews">
<list>
<ref bean="xmlView"/>
<ref bean="jsonView"/>
</list>
</property>
</bean>
<bean id="jsonView"
class="org.springframework.web.servlet.view.json.MappingJacksonJsonView">
<property name="contentType" value="application/json;charset=UTF-8"/>
<property name="disableCaching" value="false"/>
</bean>
<bean id="xmlView"
class="org.springframework.web.servlet.view.xml.MarshallingView">
<property name="contentType" value="application/xml;charset=UTF-8"/>
<constructor-arg>
<ref bean="xstreamMarshaller"/>
</constructor-arg>
</bean>
<bean id="xstreamMarshaller" class="org.springframework.oxm.xstream.XStreamMarshaller">
<property name="autodetectAnnotations" value="true" />
<property name="annotatedClass" value="com.vanilla.rest.entities.User"/>
</bean>
私の問題は、送信しているコンテンツの種類に関係なく、常に JSON 応答を取得していることです。