
Spring
RWTHeart
时光荏苒,不负韶华
展开
-
Spring使用AspectJ的面向切面AOP的通知
1.通知 五种通知:前置通知 、后置通知、 环绕通知、异常通知 、最终通知 。2.通知基于XML的实现 自定义切面类MyAspect: //前置通知 public void before() { System.out.println("前置通知方法"); } //后置通知 :改变不了结果值 public void afterReturnin...原创 2018-09-19 22:45:08 · 169 阅读 · 0 评论 -
Sping注解(annotation)
1.依赖注入的注解(DI-annotation)@Component注解组件:注册组件到spring容器中,相当于配置文件中的bean. 与@Component具有相同功能,不同意义的注解还有三个: @Repository :注解在Dao实现类上 @Service : 注解在service实现类上 @Controller :...原创 2018-09-21 22:15:25 · 187 阅读 · 0 评论