在JSON(Jackson处理器)和XML(XStream)之间切换,还是可以同时使用它?

时间:2011-09-19 11:44:15

标签: xml json spring rest jackson

我正在尝试构建一个可以将Object序列化为JSON和XML的Web服务器。由于我已经集成了Jackson(使用示例 - 项目),我可以通过我的REST接口访问JSON序列化对象,但我也想获得XML。

此...

@Controller
@RequestMapping("/main/ajax")
public class AjaxController {

@RequestMapping(value = "/blah", method = RequestMethod.GET, headers = "Accept=application/xml")
public @ResponseBody List<String> blah(@RequestParam(value="input") String input){

            List<String> stringList = new LinkedList<String>();
            stringList.add("i");
            stringList.add("am");
            stringList.add("an");
            stringList.add("json object");
            stringList.add(input);

            return stringList;
    }
 }

确定此查询:

http://localhost:8080/spring-json/krams/main/ajax/blah?input=foobar

产生输出:

["i","am","an","json object","foobar"]

任何提示?

更新#1:我实现了ContentNegotiatingViewResolver ......

<bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
  <property name="order" value="1" />

  <property name="mediaTypes">
    <map>
      <entry key="json" value="application/json" />
      <entry key="xml" value="application/xml" />
    </map>
  </property>

  <property name="defaultViews">
    <list>

      <!-- JSON View -->
      <bean class="org.springframework.web.servlet.view.json.MappingJacksonJsonView" />

      <!-- XML View --> 
      <bean class="org.springframework.web.servlet.view.xml.MarshallingView">
         <constructor-arg>
          <bean class="org.springframework.oxm.xstream.XStreamMarshaller" />
        </constructor-arg>
      </bean>  

    </list>
  </property>

  <property name="ignoreAcceptHeader" value="true" />
</bean>

<!-- If no extension matched, use JSP view -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  <property name="order" value="2" />
  <property name="prefix" value="/WEB-INF/jsp/"/>
  <property name="suffix" value=".jsp"/>
</bean>

我现在如何选择XML或JSON?         localhost:8080 / spring-json / sometestclass / status?         localhost:8080 / spring-json / sometestclass / status.xml?         localhost:8080 / spring-json / sometestclass / status.json?

上面的例子都没有用,但我可以使用Accept-header“application / xml”或“application / json”强制响应格式...如果我执行以下操作...

@RequestMapping(value = "/status", method = RequestMethod.GET, headers = "Accept=application/xml, application/json")
public @ResponseBody Web_ServerStatus isServerAlive() {
    Web_ServerStatus l_ReturnObj = new Web_ServerStatus();

...我只回来了。

我遇到的问题是什么?

提前致谢!

2 个答案:

答案 0 :(得分:1)

是的,请查看ContentNegotiatingViewResolver(因为您将spring作为标记包含在内)。

这是一个链接:http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/mvc.html#mvc-multiple-representations

但是,REST并不意味着XML。根据客户端的Accept标头和服务功能,您可以以不同的方式呈现资源。

答案 1 :(得分:0)

解决方案:

@RequestMapping(value = "/status", method = RequestMethod.GET)
public Web_ServerStatus isServerAlive() {
  ...
}

没有&#34; @ ResponseBody&#34;