spring mvc输出xml

方式一:
参考:[url]http://www.mkyong.com/spring-mvc/spring-3-mvc-and-xml-example/[/url]
满足以下条件时会自动将对象转换为xml格式进行输出:
[quote]As i know, when Spring see

1. Object annotated with JAXB
2. JAXB library existed in classpath
3. “mvc:annotation-driven” is enabled
4. Return method annotated with @ResponseBody

It will handle the conversion automatically.[/quote]
方式二(建议使用,可以和json等方式同时开启):














cn.flysnowxf.resp.Result








当请求accept=application/xml或者url以.xml结尾,将选择xml view进行处理,这里配置的xml解析器是Jaxb2Marshaller。

你可能感兴趣的:(Java)