一、使用注解配置spring
1.步驟
1.1 導包4+2+spring-aop
4代表:
2代表:
日志包:com.springsource.org.apache.commons.logging-1.1.1.jar
可選:com.springsource.org.apache.log4j-1.2.15.jar(老版本要導入的,導入可以保證一定能運行)
1.2 為主配置文件引入新的命名空間(約束)
1.3 開啟使用注解代替配置文件
1.4 在類中使用注解完成配置
2.將對象注冊到容器
//<bean name="user" class="cn.itcast.bean.User" />//@Component("user")// @Service("user") // service層// @Controller("user") // web層 @Repository("user")// dao層
3.修改對象的作用范圍
//指定對象的作用范圍@Scope(scopeName="singleton")
4.值類型注入
通過反射的Field賦值,破壞了封裝性:
@Value("tom") private String name;
通過set方法賦值,推薦使用.:
網(wǎng)友評論