Spring4.0系列4-Meta Annotation(元注解)
Spring4.0系列6-Generic Qualifier(泛型限定)
Spring4.0系列7-Ordering Autowired Collections
更多正在编写中。。。
4.0重要的一个新的改进是@RestController注解,它继承自@Controller注解。4.0之前的版本,Spring MVC的组件都使用@Controller来标识当前类是一个控制器servlet。
使用这个特性,我们可以开发REST服务的时候不需要使用@Controller而专门的@RestController。
当你实现一个RESTful web services的时候,response将一直通过response body发送。为了简化开发,Spring 4.0提供了一个专门版本的controller。下面我们来看看@RestController实现的定义:
@Target(value=TYPE) @Retention(value=RUNTIME) @Documented @Controller @ResponseBody public @interface RestController
官方文档解释:
A convenience annotation that is itself annotated with @Controller and @ResponseBody. Types that carry this annotation are treated as controllers where @RequestMapping methods assume @ResponseBody semantics by default. 注解本身使用@Controller和@ResponseBody注解。使用了这个注解的类会被看作一个controller-使用@RequestMapping的方法有一个默认的@ResponseBody注解。 @ResponseBody – As of version 4.0 this annotation can also be added on the type level in which case is inherited and does not need to be added on the method level. @ResponseBody也可以加到类一级,通过继承方法一级不需要添加。
UserDetails.java
package javabeat.net.rest; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; @XmlRootElement public class UserDetails { private String userName; private String emailId; @XmlAttribute public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName; } @XmlAttribute public String getEmailId() { return emailId; } public void setEmailId(String emailId) { this.emailId = emailId; } }
SpringRestControllerDemo.java
package javabeat.net.rest; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseStatus; import org.springframework.web.bind.annotation.RestController; @RestController public class SpringRestControllerDemo { @Autowired UserDetails userDetails; @RequestMapping(value="/springcontent", method=RequestMethod.GET,produces={"application/xml", "application/json"}) @ResponseStatus(HttpStatus.OK) public UserDetails getUser() { UserDetails userDetails = new UserDetails(); userDetails.setUserName("Krishna"); userDetails.setEmailId("krishna@gmail.com"); return userDetails; } @RequestMapping(value="/springcontent.htm", method=RequestMethod.GET) @ResponseStatus(HttpStatus.OK) public String getUserHtml() { //Test HTML view return "example"; } }
dispatcher-servlet.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd"> <context:component-scan base-package="com.infosys.rest" /> <bean id="userDetails" class="javabeat.net.rest.UserDetails"/> <mvc:annotation-driven content-negotiation-manager="contentManager"/> <bean id="contentManager" class="org.springframework.web.accept.ContentNegotiationManagerFactoryBean"> <property name="favorPathExtension" value="true"/> <property name="ignoreAcceptHeader" value="true" /> <property name="defaultContentType" value="text/html" /> <property name="useJaf" value="false"/> <property name="mediaTypes"> <map> <entry key="json" value="application/json" /> <entry key="html" value="text/html" /> <entry key="xml" value="application/xml" /> </map> </property> </bean> <bean id="jspViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/" /> <property name="suffix" value=".jsp" /> </bean> </beans>
新书推荐《JavaEE开发的颠覆者: Spring Boot实战》,涵盖Spring 4.x、Spring MVC 4.x、Spring Boot企业开发实战。
京东地址:http://item.jd.com/11894632.html
当当地址:http://product.dangdang.com/23926195.html
亚马逊地址:http://www.amazon.cn/图书/dp/B01D5ZBFUK/ref=zg_bsnr_663834051_6
淘宝地址:https://item.taobao.com/item.htm?id=528426235744&ns=1&abbucket=8#detail
或自己在京东、淘宝、亚马逊、当当、互动出版社搜索自选。
相关推荐
在Spring 4.0中,`@RestController`是一个重要的新特性,它标志着Spring MVC框架对RESTful服务支持的增强。`@RestController`是`@Controller`和`@ResponseBody`两个注解的组合,使得处理HTTP请求变得更加简洁和高效...
相比之下,@RestController注解是Spring框架提供的另一个注解,它是从Spring 4.0版本开始引入的。@RestController注解相当于@Controller+@ResponseBody合在一起的作用。换句话说,@RestController注解可以将控制器...
3. **MVC 注解增强**:在之前的版本基础上,4.0 提供了更多的注解,例如 `@Async` 用于异步方法处理,以及 `@RestController` 用于简化 RESTful 服务的创建。 4. **统一异常处理**:通过 `@ExceptionHandler` 注解...
在Spring 4.0中,我们可以通过使用`@RestController`注解标记控制器类,`@RequestMapping`、`@GetMapping`、`@PostMapping`等注解定义路由,实现RESTful API。例如,`@PostMapping("/users")`可以用于创建新用户。...
- Spring Boot由Pivotal团队开发,始于Spring 4.0版本。 - "Boot"意为引导,它通过预设配置帮助开发者快速构建项目,无需大量手动配置。 - 默认包含一个内嵌的Tomcat Web服务器,使得应用可以直接作为jar包运行,...
《Spring4.0从入门到精通:SpringMVC+JdbcTemplate整合示例解析》 Spring框架作为Java领域中广泛使用的轻量级框架,其4.0版本更是深受开发者喜爱。本教程将深入探讨如何在Spring4.0中整合SpringMVC和JdbcTemplate,...
在本文中,我们将深入探讨如何将Spring 4.0与MyBatis 3.2进行整合,特别是通过全注解的方式实现这一过程。Spring MVC是一个强大的MVC框架,而MyBatis是一个轻量级的持久层框架,两者结合可以提供高效、灵活的数据...
3. **编写REST服务**:创建一个Java类,如`MyServiceImpl.java`,并使用Spring的`@RestController`和`@RequestMapping`注解来定义REST接口。例如: ```java @RestController public class MyServiceImpl { @...
@RestController 注解是 Spring 4.0 中引入的一个新的注解,它继承自 @Controller 注解。@RestController 注解的主要作用是将 Controller 的方法返回值直接写入到 HTTP 响应体中,而不需要通过视图来显示数据。使用 ...
Spring 4.0.2是该框架的一个重要版本,它在4.0系列中引入了许多改进和新特性,提升了性能和易用性。 在"spring4.0.2札包(精简版)"中,我们可以期待以下几个关键知识点: 1. **IoC容器**:Spring的核心组件,负责...
Spring Boot 基于 Spring 4.0 设计,它兼容 Spring 平台的所有特性,并且可以无缝集成 Spring 生态系统中的其他组件。 **一、Spring Boot 的核心特性** 1. **快速启动**:通过内嵌的Tomcat或Jetty服务器,Spring ...
`@RestController` 是Spring 4.0之后引入的新注解,它是`@Controller`和`@ResponseBody`的组合。这个注解用于标记控制器类,表明该类的方法会直接返回JSON或XML等响应体内容,而不是视图名称。 **示例代码**: ```...
3. `@GetMapping`、`@PostMapping`、`@PutMapping`、`@DeleteMapping`:这些是Spring 4.0引入的更具体的HTTP操作注解,它们分别对应HTTP的GET、POST、PUT、DELETE方法。这些注解比`@RequestMapping`更具有语义性,让...
使用Spring Boot开发RESTful API十分方便,Spring MVC框架提供了一系列注解,如`@RestController`、`@RequestMapping`、`@GetMapping`、`@PostMapping`等,用于定义HTTP端点。 通过学习和实践这些知识点,你将能够...
- Spring Boot 基于 Spring 4.0 设计,旨在简化新 Spring 应用的初始搭建以及开发过程。 - 它通过自动配置、起步依赖和命令行界面等特性,极大地提高了开发效率。 - Spring Boot 并不替代 Spring,而是为了简化 ...
7. **WebSocket支持**:自Spring 4.0开始,Spring Web模块包含了对WebSocket的支持,可以用来创建实时双向通信的应用。 8. **Servlet 3.0+兼容**:Spring Web模块兼容Servlet 3.0及更高版本,可以利用新特性如异步...
Spring Boot基于Spring 4.0设计,它通过提供默认配置来简化Spring应用的搭建和开发,同时保持了Spring的灵活性。 在"sample-spring-boot-hello-world"项目中,我们可以学习到以下几个核心知识点: 1. **起步依赖...
3. New Features and Enhancements in Spring Framework 4.0 ............................................ 17 3.1. Improved Getting Started Experience .........................................................
SpringBoot框架是现代Java开发中的一个热门选择,它简化了基于Spring的应用程序的创建和配置过程。`driver_springboot.zip`压缩包提供了一个完整的SpringBoot项目实例,包含代码和数据库SQL,使得开发者可以直接运行...