Spring注解和jdk注解

Posted MyBatis

tags:

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

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注解和jdk注解的主要内容,如果未能解决你的问题,请参考以下文章

SPRING和JDK的注解

Spring使用注解实现AOP

组合注解与元注解

Spring Boot实战笔记-- Spring高级话题(组合注解与元注解)

组合注解与元注解

基于XML和注解的Spring定时器