Spring MVC Rest 学习 一

第一步:配置Spring MVC 核心Servlet

<!-- spring mvc -->
  	<listener>
  		<!--  request、session 和  global session web作用域 -->
	    <listener-class>
	        org.springframework.web.context.request.RequestContextListener
            </listener-class>
	</listener>
	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>
			classpath:applicationContext.xml
		</param-value>
	</context-param>

  	<servlet>
		<servlet-name>dispatcher</servlet-name>
		<!-- Spring mvc 核心分发器 -->
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<init-param>
			<param-name>contextConfigLocation</param-name>
			<param-value>classpath:spring-servlet.xml</param-value>
		</init-param>
		<load-on-startup>1</load-on-startup>
	</servlet>
	<servlet-mapping>
		<servlet-name>dispatcher</servlet-name>
		<!-- 拦截所有请求,静态资源会在spring-servlet中处理 -->
		<url-pattern>/</url-pattern>
	</servlet-mapping>
    <filter>
    	<!-- utf-8 编码处理 -->  
        <filter-name>Character Encoding</filter-name>  
        <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>  
        <init-param>  
            <param-name>encoding</param-name>  
            <param-value>UTF-8</param-value>  
        </init-param>  
    </filter>  
    <filter-mapping>  
        <filter-name>Character Encoding</filter-name>  
        <url-pattern>/</url-pattern>  
    </filter-mapping>

第二步:配置spring-servlet.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context.xsd 
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc.xsd 
        http://www.springframework.org/schema/util 
        http://www.springframework.org/schema/util/spring-util.xsd">  
          
       <!-- 把标记了@Controller注解的类转换为bean -->  
      <context:component-scan base-package="com.hnust.controller" />  
      
      <!-- 开启MVC注解功能 ,为了使Controller中的参数注解起效,需要如下配置 -->
	  <mvc:annotation-driven/>
	  
	   <!-- 静态资源获取,不用后台映射 -->
	  <mvc:resources mapping="/resource/**" location="/resource/"/>
	  
	  
	 <mvc:interceptors>  
	    <mvc:interceptor>  
	        <mvc:mapping path="/**"/>  
	        <!-- 定义在mvc:interceptor下面的表示是对特定的请求才进行拦截的 -->  
	        <bean class="com.hnust.interceptor.TranslateInterceptor"/>  
	    </mvc:interceptor>  
	 </mvc:interceptors>
	  
	  
	  <!-- 主要是进行Controller 和 URL 的一些注解绑定,这里可以进行转换器配置:只有配置好了转换器才能进行类与JSON和XML的转换,当然只是针对基于转换器协商资源表述 -->
	  <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" />
	  
	  
	   <!-- XML 与 Java 数据转换  -->
	  <bean id="jaxbMarshaller" class="org.springframework.oxm.jaxb.Jaxb2Marshaller">
		<property name="classesToBeBound">
			<list>
				<!--common XML 映射  JavaBean 注册  -->
				<value>com.hnust.bean.Resource</value>
			</list>
		</property>
	  </bean>
	  
	  <!-- 基于视图渲染进行协商资源表述  -->
	  <bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
	  	<!-- restful 是否采用扩展名的方式确定内容格式,id.json 返回JSON格式 -->
	    <property name="favorPathExtension" value="true"></property>
	  
	    <!-- restful 是否采用参数支持确定内容格式,id?format=json 返回JSON格式 -->
	    <property name="favorParameter" value="true"></property>
	  
	    <!-- restful 是否忽略掉accept header,Accept:application/json -->
	    <property name="ignoreAcceptHeader" value="false"></property>
	    
	    <!-- 基于视图按顺序解析  -->
	    <property name="order" value="1" />
	    
	    <!-- 对采用扩展名,参数新式的 URL 进行获取对应的 accept  -->
		<property name="mediaTypes">
		    <map>
		    	<entry key="json" value="application/json"/>
		        <entry key="xml" value="application/xml"/>
		        <entry key="html" value="text/html"/>
		    </map>
		</property>

		<!-- 如果扩展名,参数甚至header 信息都没有找到对应的accept时  -->
		<property name="defaultContentType" value="text/html"/>

		<!-- 采用对应的视图进行渲染  -->
		<property name="defaultViews">
		    <list >
				<!-- 转换Java对象为XML格式数据 -->
				<bean class="org.springframework.web.servlet.view.xml.MarshallingView">
					<constructor-arg ref="jaxbMarshaller" />
				</bean>

				<!-- 转换Java对象为JSON 格式数据 -->
				<bean class="org.springframework.web.servlet.view.json.MappingJacksonJsonView"/> 
		    </list>
		</property>
		<!-- 采用对应的视图进行渲染  -->
		<property name="viewResolvers">
		    <list >
		    	<!-- 查找在上下文中定义了ID的Bean,并且定位该ID  -->
		        <bean class="org.springframework.web.servlet.view.BeanNameViewResolver"/>
		        <!-- 对Controller中返回的视图实例进行解析,并且组装URL定位到对应的资源  -->
		        <bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver">
					<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
					<property name="prefix" value="/WEB-INF/jsp/"/>
					<property name="suffix" value=".jsp"/>
				</bean>
		    </list>
		</property>
	</bean>
	       
  </beans>

第三步:编写controller

/**
 *
 *@author:Heweipo
 *@version 1.00
 *
 */
@Controller
@RequestMapping("/resource")
public class ResourceController {

	@Autowired
	private ResourceService service;

	@RequestMapping(value="/get/{id}" , method=RequestMethod.GET)
	public String get(@PathVariable("id") String id , ModelMap model){
		model.put("resource", service.getResource(id));
		return "resource";
	}

}

第四步:页面请求,获取 Json xml html 三种格式的数据

浏览器请求URL: 
浏览器响应结果:{"resource":{"id":"id_111","name":"maven","number":11}}
 
浏览器响应结果:
<resource>
    <id>id_111</id>
    <name>maven</name>
    <number>11</number>
</resource>

总结:因为刚刚学习,所以只是一个开始,下周贴出全部源码,仅供学习参考。

时间: 2024-11-25 15:58:29

Spring MVC Rest 学习 一的相关文章

spring MVC (学习笔记)

web.xml 相关配置 <?xml version="1.0" encoding="UTF-8"?><web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://xmlns.jcp.org/xm

Spring MVC基础学习

SpringMVC是Spring框架的一个模块,无需通过中间层整合在一起.SpringMVC是一个基于MVC设计模式web框架,MVC-model-view-controller:MVC将服务器端分为M.V.C三个组件,各模块负责各自的业务,实现了数据.业务逻辑和视图显示的分离.使软件模块化.model处理数据属于业务逻辑,controller完成数据和业务的调度,view完成视图显示. SpringMVC的几个重要组件:DispatcherServlet:前端控制器,主要是接收前端数据,通过H

spring mvc 基础学习

springmvc 框架原理 : 前端控制器.处理器映射器.处理器适配器.视图解析器 springmvc 入门: spring 和 ibatis 整合 springmvc 注解开发 常用注解学习 参数绑定(简单类型.pojo.集合类型) 自定义参数绑定* 数据回显 1.1 springmvc 框架 springmvc 是 spring 框架的一个模块,无需中间整合层进行整合,是基于mvc的web框架 1.2 什么是mvc mvc 是一个设计模式 1.3 springmvc框架

Spring MVC Rest 学习 二

1.Controller应该是SpringMVC的核心,Controller中要学习的注解也是多之又多,不过这些注解在程序中的作用确实不可小觑,看看列出这几项: @Controller  :  定义一个类为控制器,这个与 @Repository 有点像 @RequestMapping : 定义Controller的URL映射以及请求方法 @PathVariable : 定义路径参数,Rest本身就是把资源进行唯一定义,那么URL中使用参数也是唯一定义的一种形式 @ResponseBody : 定

Spring MVC HelloWorld

我使用Maven + Idea 开始了Spring MVC的学习之路,Hello World教程参照:http://www.programcreek.com/2014/02/spring-mvc-helloworld-using-maven-in-eclipse/ 1 首先使用Maven脚手架生成一个基于maven 的web 框架 在命令行使用命令生成项目结构框架: mvn archetype:generate -DgroupId=com.mmj.app -DartifactId=hellowo

Spring MVC Rest 返回值为空

 问题描述: 采用Spring Restful ,可以通过浏览器的地址栏URL正确访问后台且不报错误,但是前台总是获取不到数据,前台也是收到了后台的响应,就是没有数据. 具体如下: 采用 Spring Restful 对不同的格式,可以发送不同格式化的数据,比如Json.XML.HTML..... 对于配置文件如下: 参考 Spring MVC Rest 学习 一:http://my.oschina.net/heweipo/blog/337581 参考Spring MVC Rest 学习 二:h

Java EE - Servlet 3.0 和 Spring MVC

Table of Contents 前言 基于 Java 的配置 ServletContainerInitializer 动态配置 DispatcherServlet 和 ContextLoaderListener 两个应用上下文 配置过程 结语 参考链接 前言 在学习 Spring MVC 的过程中发现,Spring MVC 使用了不少 Servlet 3.0 的新特性,但鉴于我学习 Servlet 使用的教程是 <Head First Servlet & JSP>,其中的 Serv

Spring MVC 学习笔记(二):@RequestMapping用法详解

一.@RequestMapping 简介 在Spring MVC 中使用 @RequestMapping 来映射请求,也就是通过它来指定控制器可以处理哪些URL请求,相当于Servlet中在web.xml中配置 <servlet>     <servlet-name>servletName</servlet-name>     <servlet-class>ServletClass</servlet-class> </servlet>

SpringMVC学习系列(12) 完结篇 之 基于Hibernate+Spring+Spring MVC+Bootstrap的管理系统实现

到这里已经写到第12篇了,前11篇基本上把Spring MVC主要的内容都讲了,现在就直接上一个项目吧,希望能对有需要的朋友有一些帮助. 一.首先看一下项目结构: InfrastructureProjects:是抽取出的基础项目,主要封装了一些通用的操作. SpringMVC3Demo:就是管理系统所在的项目. WeiXinAPI:是之前做微信管理平台测试时封装一些操作,如果不需要把该项目移除即可. 注:项目的前端UI框架用的是国外的一个基于Bootstrap框架的开发的Demo,如不需要替换为