Spring MVC 多视图协商配置(json、xml、freemarker)

2024-09-03 01:18

本文主要是介绍Spring MVC 多视图协商配置(json、xml、freemarker),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Spring mvc可以配置多种视图,比如json、xml、ftl等等(REST内容协商)。
RESTful服务中很重要的一个特性是对于同一资源,可以有多种表述形式。
既然是协商视图,那么Spring MVC REST改如何决定采用何种方式(视图)展示内容呢?
第一种:根据http request header中的Accept


Accept: text/css,*/*;q=0.1               //返回css格式数据
Accept: application/xml                  //返回xml格式数据
Accept: application/json                 //返回json格式数据
缺点:
chrome:
Accept:application/xml,application/xhtml+xml,textml;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
 
firefox:
Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8


IE8:
Accept:image/gif, image/jpeg, image/pjpeg, image/pjpeg, application/x-shockwave-flash, application/x-silverlight, application/x-ms-application, application/x-ms-xbap, application/vnd.ms-xpsdocument, application/xaml+xml, */*
用户直接通过浏览器访问,由于各个浏览器发送的Accept的不一致,将导致服务器不知要返回什么格式的数据。
第二种:根据扩展名
http://www.sxrczx.com/rest.xml           //将返回xml格式数据
http://www.sxrczx.com/rest.json          //将返回json格式数据
http://www.sxrczx.com/rest.htm           //将返回html格式数据
缺点:
不能统一通过同一URL实现多种展示视图。
第三种:根据format参数
http://www.sxrczx.com/rest?format=xml    //将返回xml格式数据
http://www.sxrczx.com/rest?format=json   //将返回json格式数据
http://www.sxrczx.com/rest?format=htm    //将返回html格式数据
缺点:
需要额外的传递format参数,URL变得冗余,繁琐,缺少了REST的简洁风范。
配置:web.xml,显示Spring的配置文件位置
...
<!-- spring mvc -->
<servlet>
    <servlet-name>SpringMvc</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
       <param-name>contextConfigLocation</param-name>
         <param-value>/WEB-INF/config/spring/appContext.xml</param-value>
      </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>
<servlet-mapping>
    <servlet-name>SpringMvc</servlet-name>
    <url-pattern>*.htm</url-pattern>
    <url-pattern>*.json</url-pattern>
    <!-- <url-pattern>*.xml</url-pattern> -->
</servlet-mapping>
...
==========================================================================================================================
Spring配置appContext.xml(无扩展名(jsp作为视图)/json/xml)
<!-- 根据客户端的不同的请求决定不同的view进行响应, 如 http://www.sxrczx.com/rest.json http://www.sxrczx.com/rest.xml -->
<bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">  
<!-- 设置为true以忽略对Accept Header的支持-->
<property name="ignoreAcceptHeader" value="true"/>  
<!-- 在没有扩展名时即: "http://www.sxrczx.com/rest" 时的默认展现形式 -->
<property name="defaultContentType" value="text/html"/>  
<!-- 扩展名至mimeType的映射,即 http://www.sxrczx.com/rest.json 映射为 application/json -->
<property name="mediaTypes">  
<map>  
<entry key="json" value="application/json" />  
<entry key="xml" value="application/xml" />  
</map>  
</property>  
<!-- 用于开启 http://www.sxrczx.com/rest?format=json 的支持 -->
<property name="favorParameter" value="false"/>  
<property name="viewResolvers">  
<list>  
<bean class="org.springframework.web.servlet.view.BeanNameViewResolver" />  
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">  
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>  
<property name="prefix" value="/pages"/>  
<property name="suffix" value=".jsp"></property>  
</bean>  
</list>  
</property>  


<property name="defaultViews">  
<list>  
<!-- for application/json -->
<bean class="org.springframework.web.servlet.view.json.MappingJacksonJsonView" />  
<!-- for application/xml -->
<!--   
<bean class="org.springframework.web.servlet.view.xml.MarshallingView" >  
<property name="marshaller">  
<bean class="org.springframework.oxm.xstream.XStreamMarshaller"/>  
</property>  
</bean> 
-->
</list>  
</property>  
</bean>
=======================================================================================================================
Spring配置appContext.xml(freemarker/json)
<bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
<property name="order" value="1" />
<property name="favorParameter" value="false" />
<property name="ignoreAcceptHeader" value="true" />
<property name="defaultContentType" value="application/json" />
<property name="mediaTypes">
<map>
<entry key="json" value="application/json" />
</map>
</property>
<property name="viewResolvers">
<list>
<!--  配置freemarker作为视图层 -->
<bean id="freeMarkerViewResolver" class="org.springframework.web.servlet.view.freemarker.FreeMarkerViewResolver">
<property name="cache" value="true" />
<property name="order" value="0" />
<property name="prefix" value="" />
<property name="suffix" value=".htm" />
<property name="contentType" value="text/html;charset=utf-8" />
<!--  把contextPath暴露给freemaker,前端可以通过${request.getContextPath()} 来获取上下文路径 
<property name="requestContextAttribute" value="request"/>
-->
<property name="viewClass" value="org.springframework.web.servlet.view.freemarker.FreeMarkerView"/>
</bean>
</list>
</property>
<property name="defaultViews">
<list>
<bean class="org.springframework.web.servlet.view.json.MappingJacksonJsonView" />
</list>
</property>
</bean>
     
<!-- Freemarker -->
<bean id="freeMarkerViewResolver" class="org.springframework.web.servlet.view.freemarker.FreeMarkerViewResolver">
<property name="cache" value="true" />
<property name="order" value="0" />
<property name="prefix" value="" />
<property name="suffix" value=".htm" />
<property name="contentType" value="text/html;charset=utf-8" />
<!-- 把contextPath暴露给freemaker,前端可以通过¥{request.getContextPath()} 来获取上下文路径 
<property name="requestContextAttribute" value="request"/>
-->
<property name="viewClass" value="org.springframework.web.servlet.view.freemarker.FreeMarkerView" />
</bean>


<!-- ftl参数配置 -->
<bean id="freemarkerConfiguration" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="location" value="/WEB-INF/config/ftl/freemarker.properties"/>
</bean>
<bean id="freemarkerConfig" class="org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer">
<property name="defaultEncoding" value="utf-8"/>
<property name="templateLoaderPath" value="/WEB-INF/template"/>
<property name="freemarkerSettings" ref="freemarkerConfiguration"/>
</bean>
freemarker.properties
datetime_format=yyyy-MM-dd HH:mm:ss
date_format=yyyy-MM-dd
time_format=HH:mm:ss
number_format=0.######;
boolean_format=true,false
#auto_import="/common/index.ftl" as ui
whitespace_stripping=true
default_encoding=UTF-8
tag_syntax=square_bracket
url_escaping_charset=UTF-8
#开启默认容错,既null时,默认使用""代替
classic_compatible=true

这篇关于Spring MVC 多视图协商配置(json、xml、freemarker)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1131615

相关文章

Nginx 配置跨域的实现及常见问题解决

《Nginx配置跨域的实现及常见问题解决》本文主要介绍了Nginx配置跨域的实现及常见问题解决,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来... 目录1. 跨域1.1 同源策略1.2 跨域资源共享(CORS)2. Nginx 配置跨域的场景2.1

javax.net.ssl.SSLHandshakeException:异常原因及解决方案

《javax.net.ssl.SSLHandshakeException:异常原因及解决方案》javax.net.ssl.SSLHandshakeException是一个SSL握手异常,通常在建立SS... 目录报错原因在程序中绕过服务器的安全验证注意点最后多说一句报错原因一般出现这种问题是因为目标服务器

gitlab安装及邮箱配置和常用使用方式

《gitlab安装及邮箱配置和常用使用方式》:本文主要介绍gitlab安装及邮箱配置和常用使用方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1.安装GitLab2.配置GitLab邮件服务3.GitLab的账号注册邮箱验证及其分组4.gitlab分支和标签的

Java实现删除文件中的指定内容

《Java实现删除文件中的指定内容》在日常开发中,经常需要对文本文件进行批量处理,其中,删除文件中指定内容是最常见的需求之一,下面我们就来看看如何使用java实现删除文件中的指定内容吧... 目录1. 项目背景详细介绍2. 项目需求详细介绍2.1 功能需求2.2 非功能需求3. 相关技术详细介绍3.1 Ja

springboot项目中整合高德地图的实践

《springboot项目中整合高德地图的实践》:本文主要介绍springboot项目中整合高德地图的实践,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一:高德开放平台的使用二:创建数据库(我是用的是mysql)三:Springboot所需的依赖(根据你的需求再

spring中的ImportSelector接口示例详解

《spring中的ImportSelector接口示例详解》Spring的ImportSelector接口用于动态选择配置类,实现条件化和模块化配置,关键方法selectImports根据注解信息返回... 目录一、核心作用二、关键方法三、扩展功能四、使用示例五、工作原理六、应用场景七、自定义实现Impor

SpringBoot3应用中集成和使用Spring Retry的实践记录

《SpringBoot3应用中集成和使用SpringRetry的实践记录》SpringRetry为SpringBoot3提供重试机制,支持注解和编程式两种方式,可配置重试策略与监听器,适用于临时性故... 目录1. 简介2. 环境准备3. 使用方式3.1 注解方式 基础使用自定义重试策略失败恢复机制注意事项

MySQL MCP 服务器安装配置最佳实践

《MySQLMCP服务器安装配置最佳实践》本文介绍MySQLMCP服务器的安装配置方法,本文结合实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下... 目录mysql MCP 服务器安装配置指南简介功能特点安装方法数据库配置使用MCP Inspector进行调试开发指

SpringBoot整合Flowable实现工作流的详细流程

《SpringBoot整合Flowable实现工作流的详细流程》Flowable是一个使用Java编写的轻量级业务流程引擎,Flowable流程引擎可用于部署BPMN2.0流程定义,创建这些流程定义的... 目录1、流程引擎介绍2、创建项目3、画流程图4、开发接口4.1 Java 类梳理4.2 查看流程图4

一文详解如何在idea中快速搭建一个Spring Boot项目

《一文详解如何在idea中快速搭建一个SpringBoot项目》IntelliJIDEA作为Java开发者的‌首选IDE‌,深度集成SpringBoot支持,可一键生成项目骨架、智能配置依赖,这篇文... 目录前言1、创建项目名称2、勾选需要的依赖3、在setting中检查maven4、编写数据源5、开启热