摘要: Spring_IOC/AOP注解 一、IOC注解 1.用于向Spring容器中注入bean: @Component:向Spring容器中注入bean @Repository:用于标注Dao层 @Service:用于标注Service业务层 @Controller:用于标注控制器类 2.用于得到数据, 阅读全文
posted @ 2019-11-01 17:04 小猪会拱菜 阅读(269) 评论(0) 推荐(0)
摘要: spring_顾问 通知(advice)是Spring中的一种比较简单的切面,只能将切面织入到目标类的所有方法中,而无法对指定方法进行增强 顾问(advisor)是Spring提供的另外一种切面,可以织入到指定的方法中 接口 PointcutAdvisor 实现类: NameMatchMethodP 阅读全文
posted @ 2019-11-01 14:02 小猪会拱菜 阅读(161) 评论(0) 推荐(0)