Spring Mvc4.0
Moutai码哥
广漂一枚,认真做好技术,等混不下去就回家卖酒,哈哈...
展开
-
1. Spring4.0新特性
2013年12月12日,Spring IO官方发布了Spring Framework 4.0 GA。这次继2009年Spring framework 3.0第一次重大版本更新。 在这里列出Spring4.0的主要更新。1、废弃的方法和包在4.0版本,标识为deprecated的方法和包将会被废弃且不会继续支持。这位从老版本的Spring向4.0迁移提出了挑战。如翻译 2015-11-28 22:53:50 · 988 阅读 · 0 评论 -
2. Spring4.0环境搭建
为了避免在以后的Spring4.0系列中都提及Spring的环境配置。在这里统一介绍Spring4.0的环境搭建。1、Spring 4.0 Maven Depedency org.springframework spring-context 4.0.0.RELEASE 2、Sprin翻译 2015-11-28 23:06:35 · 496 阅读 · 0 评论 -
3. Spring4.0之@RestController
4.0重要的一个新的改进是@RestController注解,它继承自@Controller注解。4.0之前的版本,Spring MVC的组件都使用@Controller来标识当前类是一个控制器servlet。 使用这个特性,我们可以开发REST服务的时候不需要使用@Controller而专门的@RestController。 当你实现一个RESTful web翻译 2015-11-28 23:09:25 · 632 阅读 · 0 评论 -
4. Spring4.0之Meta Annotation(元注解)
Spring框架自2.0开始添加注解的支持,之后的每个版本都增加了更多的注解支持。注解为依赖注入,AOP(如事务)提供了更强大和简便的方式。这也导致你要是用一个相同的注解到许多不同的类中去。这篇文章介绍meta annotation来解决这个问题。Meta Annotation(元注解)定义Spring4.0的许多注解都可以用作meta annotation(元注解)。元注解是一种翻译 2015-11-28 23:15:19 · 1010 阅读 · 0 评论