SPRING和JDK的注解

Posted Remnart

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使用注解实现AOP

java注解详解

jdk1.6与jdk1.8的哪些Spring注解不能用

JDK注解替代Hibernate的Entity映射

基于XML和注解的Spring定时器

组合注解与元注解