Spring REST XML 和 JSON 示例
欢迎来到 Spring Restful Web 服务 XML 和 JSON 示例。不久前,我写了一篇关于Spring REST JSON的文章,我收到了很多评论,询问如何更改程序以支持 XML。我还收到了一些电子邮件,询问如何使应用程序同时支持 XML 和 JSON。
Spring REST XML 和 JSON
我想写一篇关于 Spring REST XML 和 JSON 应用程序的文章,其中我将向您展示如何轻松扩展现有应用程序以支持 XML。由于我将对现有项目进行更改,请确保您首先从以下链接下载它。
下载 Spring Restful Webservice 项目
现在对 spring bean 配置文件进行以下更改。
-
定义一个类型的 bean
Jaxb2RootElementHttpMessageConverter
。<beans:bean id="xmlMessageConverter" class="org.springframework.http.converter.xml.Jaxb2RootElementHttpMessageConverter"> </beans:bean>
-
将上面配置的 bean 添加到
RequestMappingHandlerAdapter
属性中messageConverters
。<beans:bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"> <beans:property name="messageConverters"> <beans:list> <beans:ref bean="jsonMessageConverter"/> <beans:ref bean="xmlMessageConverter"/> </beans:list> </beans:property> </beans:bean>
经过上述更改后,我们的最终 spring bean 配置文件将如下所示。servlet-context.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="https://www.springframework.org/schema/mvc"
xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="https://www.springframework.org/schema/beans"
xmlns:context="https://www.springframework.org/schema/context"
xsi:schemaLocation="https://www.springframework.org/schema/mvc https://www.springframework.org/schema/mvc/spring-mvc.xsd
https://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd
https://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd">
<!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->
<!-- Enables the Spring MVC @Controller programming model -->
<annotation-driven />
<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
<resources mapping="/resources/**" location="/resources/" />
<!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>
<!-- Configure to plugin JSON as request and response in method handler -->
<beans:bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
<beans:property name="messageConverters">
<beans:list>
<beans:ref bean="jsonMessageConverter"/>
<beans:ref bean="xmlMessageConverter"/>
</beans:list>
</beans:property>
</beans:bean>
<!-- Configure bean to convert JSON to POJO and vice versa -->
<beans:bean id="jsonMessageConverter" class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
</beans:bean>
<beans:bean id="xmlMessageConverter" class="org.springframework.http.converter.xml.Jaxb2RootElementHttpMessageConverter">
</beans:bean>
<context:component-scan base-package="com.journaldev.spring.controller" />
</beans:beans>
我们知道,要使用 JAXB 编组来处理类,我们需要使用@XmlRootElement
注释对其进行注释。因此,将其添加到我们的Employee
模型类中。Employee.java
@XmlRootElement
public class Employee implements Serializable{
//no change in code
}
就这样,我们完成了。我们的 Spring 应用程序将同时支持 JSON 和 XML。它甚至支持带有 JSON 响应的 XML 请求,反之亦然。下面是一些展示此操作的屏幕截图。注意:我为此使用 Postman Chrome 应用程序,您可以使用任何其他客户端进行此测试。1. XML 响应:确保将 Accept 标头传递为“application/xml”。2 . JSON 响应:确保将 Accept 标头传递为“application/json”。3 .带有 JSON 响应的 XML 请求:确保 Accept 标头为“application/json”且 Content-Type 标头为“text/xml”,如下图所示。这就是支持 XML 和 JSON 的 Spring Restful web 服务示例。您可以看到扩展 Spring 框架是多么容易,这是 Spring 框架流行的主要原因之一。