spring注解和增强

Posted MyBatis

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring注解和增强相关的知识,希望对你有一定的参考价值。

1.添加xsd约束

 

 

xmlns:context="http://www.springframework.org/schema/context"
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd

2. component:组件

<context:component-scan base-package=""></context:component-scan>
3.几种注解

@Component("info") 不分层
@Repository("info") dao
@Service("info") biz
@Controller("info") action

@Value() 在一个类中注入普通属性值

@Resource 在一个类中注入域属性

@Autowired 在一个类中注入域属性

以上是关于spring注解和增强的主要内容,如果未能解决你的问题,请参考以下文章

Spring基础:AOP注解和XML方式实现

spring中的aop注解(整合junit测试)

Spring AOP 源码解析:注解式切面增强机制

Spring AOP 源码解析:注解式切面增强机制

Spring AOP 源码解析:注解式切面增强机制

Spring框架-使用注解实现异常抛出增强,最终增强 ,环绕增强 @AfterThrowing @After @Around