文章目录
- Spring中基于注解的IOC配置项目举例详解
- 1、创建如下结构的Spring项目
- pom.xml
- dao层
- service层
- application.xml
- log4j.properties
- 2、用于创建对象的常用注解
- 2.1、@Controller或@Controller("user")声明bean,且id="user"
- 2.2、@Service或用@Service("user")声明bean,且id="user"
- 2.3、@Repository或同上面两个
- 2.4、@Component
- 2.5、@Scope
- 以上几个注解功能相同,但为了在项目实现过程中便于区分则一般按照下面分类使用
- 3、用于属性注入的注解
- 3.1、@Autowired
- 3.2、@Resource
- 3.3、@Value
- 测试类
Spring中基于注解的IOC配置项目举例详解
1、创建如下结构的Spring项目
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>SpringDemo</artifactId>
<groupId>cn.fpl</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>Spring_IOC_Annotation</artifactId>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.1.8.RELEASE</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.30</version>
</dependency>
</dependencies>
</project>
dao层
public class UserDaoImpl implements UserDao {
@Override
public void addUser(){
System.out.println("insert into tb_user......");
}
}
service层
public class UserServiceImpl implements UserService {
@Override
public void addUser(){
System.out.println(userDao+" "+name+" "+age);
userDao.addUser();
}
}
application.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd ">
<!--
告诉spring,容器启动时要扫描的包,且spring会依据注解创建对象并存到IOC容器中
-->
<context:component-scan base-package="cn.fpl"></context:component-scan>
</beans>
log4j.properties
# Global logging configuration
log4j.rootLogger=DEBUG, stdout
# Console output...
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m%n
2、用于创建对象的常用注解
2.1、@Controller或@Controller(“user”)声明bean,且id=“user”
-
作用:
把资源交给spring来管理,相当于:
<bean id="" class="">
;一般用于表现层。 -
属性:
value:指定bean的id;如果不指定value属性,默认bean的id是当前类的类名,首字母小写;
2.2、@Service或用@Service(“user”)声明bean,且id=“user”
-
作用:
把资源交给spring来管理,相当于:
<bean id="" class="">
;一般用于业务层。 -
属性:
value:指定bean的id;如果不指定value属性,默认bean的id是当前类的类名,首字母小写;
2.3、@Repository或同上面两个
-
作用:
把资源交给spring来管理,相当于:
<bean id="" class="">
;一般用于持久层。 -
属性:
value:指定bean的id;如果不指定value属性,默认bean的id是当前类的类名,首字母小写;
2.4、@Component
- 作用:
把资源交给spring来管理,相当于:
<bean id="" class="">
;通用。 -
属性:
value:指定bean的id;如果不指定value属性,默认bean的id是当前类的类名,首字母小写;
2.5、@Scope
- 作用:
指定bean的作用域范围。
-
属性:
value:指定范围的值,singleton prototype request session。
以上几个注解功能相同,但为了在项目实现过程中便于区分则一般按照下面分类使用
@Controller:web
@Service:service
@Repository:dao
@Component:三层架构之外
3、用于属性注入的注解
以下四个注解的作用相当于:<property name="" ref="">
。
3.1、@Autowired
作用:
自动按照类型注入。set方法可以省略。
案例:
@Service
public class UserServiceImpl implements UserService {
@Autowired //注入类型为UserDAO的bean
private UserDao userDao;
public void addUser(){
userDao.addUser();
}
}
3.2、@Resource
-
作用:
自动按照名字注入。set方法可以省略。
-
属性:
name:指定bean的id。
案例:
@Service
public class UserServiceImpl implements UserService {
@Resource(name="userDaoImpl")//注入id=“userDaoImpl”的bean
private UserDao userDao;
public void addUser(){
userDao.addUser();
}
}
3.3、@Value
-
作用:
注入基本数据类型和String类型数据的
-
属性:
value:用于指定值
- 案例一
@Service
public class UserServiceImpl implements UserService {
@Resource(name="userDaoImpl") //注入id=“userDaoImpl”的bean
private UserDao userDao;
@Value("张三")//注入String
private String name;
@Value("18")//注入Integer
private Integer age;
public void addUser(){
System.out.println(name+","+age);
userDao.addUser();
}
}
- 案例二
- 创建config.properties文件在resources文件夹下
name=张三
age=18
- 在application.xml文件中加载配置文件
<!--加载config.properties配置文件,并把配置文件中的数据存到IOC容器中-->
<context:property-placeholder location="config.properties"></context:property-placeholder>
- 注入属性值
@Service
public class UserServiceImpl implements UserService {
@Autowired
private UserDao userDao;
@Value("${name}")//注入String
private String name;
@Value("${age}")//注入Integer
private Integer age;
public void addUser() {
System.out.println(name+","+age);
userDao.addUser();
}
}
测试类
public static void main(String[] args) {
ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
UserDao userDao = ac.getBean("userDaoImpl", UserDao.class);
UserService userService = ac.getBean("user", UserService.class);
userService.addUser();
}