1. 程式人生 > >SPRING和JDK的註解

SPRING和JDK的註解

one ext ges epo value schema sch www. tor

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的註解