随笔分类 -  Spring

摘要:1.Spring 2.5 中除了提供 @Component 注释外,还定义了几个拥有特殊语义的注释,它们分别是:@Repository、@Service和 @Controller 其实这三个跟@Component 功能是等效的。 区别: ①@Service用于标注业务层组件(我们通常定义的servi 阅读全文
posted @ 2020-02-26 22:29 mYunYu 阅读(219) 评论(0) 推荐(0) 编辑
摘要:前言 当下SpringBoot盛行,咱再聊聊SpringBoot盛行之前的框架组合,当做复习巩固哈。 在聊之前,得先说说MVC,MVC全名是Model View Controller,是模型(model)--视图(view)--控制器(controller)的缩写。M是指业务模型,V是指用户界面,C 阅读全文
posted @ 2019-08-23 16:42 mYunYu 阅读(2063) 评论(0) 推荐(0) 编辑
摘要:1、Spring中AOP的应用场景、AOP原理、好处? 答:AOP:Aspect Oriented Programming面向切面编程;用来封装横切关注点,具体可以在下面场景中使用: Authentication权限、Caching缓存、Contextpassing内容传递、Error handin 阅读全文
posted @ 2018-10-30 10:05 mYunYu 阅读(182) 评论(0) 推荐(0) 编辑