10 Spring框架--基于注解的IOC配置
1.工程环境搭建

2.基于注解的IOC配置
IOC注解的分类
(1)用于创建对象的
他们的作用就和在XML配置文件中编写一个<bean>标签实现的功能是一样的
@Component:
作用:用于把当前类对象存入spring容器中
属性:
value:用于指定bean的id。当我们不写时,它的默认值是当前类名,且首字母改小写。
业务层实现类:AccountServiceImpl.java
package lucky.service.impl; import lucky.service.IAccountService;
import org.springframework.stereotype.Component; /**
* 账户的业务层实现类
* xml的ioc配置
* <bean id="accountService" class="service.impl.AccountServiceImpl"></bean>
* <bean id="accountDao" class="dao.impl.AccountDaoImpl"></bean>
*/
@Component
public class AccountServiceImpl implements IAccountService { public AccountServiceImpl(){
System.out.println("对象创建了");
} public void saveAccount(){
System.out.println("AccountServiceImpl中的saveAccount方法执行了");
} }
表现层:
package lucky.ui; import lucky.service.IAccountService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext; /**
* 模拟一个表现层,用于调用业务层
*/
public class Client { public static void main(String[] args) {
//1.获取核心容器对象
ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml"); //2.根据id获取Bean对象,注意id是在bean.xml文件配置的
IAccountService as = (IAccountService)ac.getBean("accountServiceImpl");
System.out.println(as);
// as.saveAccount(); }
}
bean.xml文件配置
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
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在创建容器时要扫描的包,配置所需要的标签不是在beans的约束中,而是一个名称为
context名称空间和约束中-->
<context:component-scan base-package="lucky"></context:component-scan>
</beans>
@ Controller:一般用在表现层
@ Service:一般用在业务层
@ Repository:一般用在持久层
持久层实现类:
package lucky.dao.impl; import lucky.dao.IAccountDao;
import org.springframework.stereotype.Repository; /**
* 账户的持久层实现类
*/
@Repository
public class AccountDaoImpl implements IAccountDao { public void saveAccount(){
System.out.println("保存了账户");
}
}
表现层:
package lucky.ui; import lucky.dao.IAccountDao;
import lucky.service.IAccountService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext; /**
* 模拟一个表现层,用于调用业务层
*/
public class Client { /**
* 获取spring的Ioc核心容器,并根据id获取对象
*
* ApplicationContext的三个常用实现类:
* ClassPathXmlApplicationContext:它可以加载类路径下的配置文件,要求配置文件必须在类路径下。不在的话,加载不了。(更常用)
* FileSystemXmlApplicationContext:它可以加载磁盘任意路径下的配置文件(必须有访问权限)
*
* AnnotationConfigApplicationContext:它是用于读取注解创建容器的,是明天的内容。
*
* 核心容器的两个接口引发出的问题:
* ApplicationContext: 单例对象适用 采用此接口
* 它在构建核心容器时,创建对象采取的策略是采用立即加载的方式。也就是说,只要一读取完配置文件马上就创建配置文件中配置的对象。
*
* BeanFactory: 多例对象使用
* 它在构建核心容器时,创建对象采取的策略是采用延迟加载的方式。也就是说,什么时候根据id获取对象了,什么时候才真正的创建对象。
* @param args
*/
public static void main(String[] args) {
//1.获取核心容器对象
ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml"); //2.根据id获取Bean对象,注意id是在bean.xml文件配置的
IAccountService as = (IAccountService)ac.getBean("accountServiceImpl");
IAccountDao ad = (IAccountDao)ac.getBean("accountDaoImpl");
System.out.println(as);
System.out.println(ad);
// as.saveAccount(); }
}
以上三个注解他们的作用和属性与Component是一模一样。
他们三个是spring框架为我们提供明确的三层使用的注解,使我们的三层对象更加清晰
(2)用于注入数据的
他们的作用就和在xml配置文件中的bean标签中写一个<property>标签的作用是一样的
@Autowired:
作用:自动按照类型注入。只要容器中有唯一的一个bean对象类型和要注入的变量类型匹配,就可以注入成功
如果ioc容器中没有任何bean的类型和要注入的变量类型匹配,则报错。
如果Ioc容器中有多个类型匹配时:会报错(解决方案:配合@Qualifier的注解使用,指定具体用哪个类型)
出现位置:
可以是变量上,也可以是方法上
package lucky.service.impl; import lucky.dao.IAccountDao;
import lucky.service.IAccountService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component; /**
* 账户的业务层实现类
* xml的ioc配置
* <bean id="accountService" class="service.impl.AccountServiceImpl"></bean>
* <bean id="accountDao" class="dao.impl.AccountDaoImpl"></bean>
*/
@Component
public class AccountServiceImpl implements IAccountService { @Autowired
private IAccountDao iAccountDao; public void saveAccount(){
iAccountDao.saveAccount();
} }
细节:
在使用注解注入时,set方法就不是必须的了。
@ Qualifier:
作用:在按照类中注入的基础之上再按照名称注入。它在给类成员注入时不能单独使用。但是在给方法参数注入时可以
属性:
value:用于指定注入bean的id。
举例:
有两个IAccountDao实现类时
AccountDaoImpl.java
package lucky.dao.impl; import lucky.dao.IAccountDao;
import org.springframework.stereotype.Repository; /**
* 账户的持久层实现类
*/
@Repository(value = "accountDao1")
public class AccountDaoImpl implements IAccountDao { public void saveAccount(){
System.out.println("保存了账户--AccountDaoImpl");
}
}
AccountDaoImpl2.java
package lucky.dao.impl; import lucky.dao.IAccountDao;
import org.springframework.stereotype.Repository; /**
* 账户的持久层实现类
*/
@Repository(value = "accountDao2")
public class AccountDaoImpl2 implements IAccountDao { public void saveAccount(){
System.out.println("保存了账户--AccountDaoImpl2");
}
}
业务层实现类
package lucky.service.impl; import lucky.dao.IAccountDao;
import lucky.service.IAccountService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Component; /**
* 账户的业务层实现类
* xml的ioc配置
* <bean id="accountService" class="service.impl.AccountServiceImpl"></bean>
* <bean id="accountDao" class="dao.impl.AccountDaoImpl"></bean>
*/
@Component
public class AccountServiceImpl implements IAccountService { //@Qualifier("accountDao1")指定用AccountDaoImpl生成的对象注入
@Autowired
@Qualifier("accountDao1")
private IAccountDao iAccountDao; public void saveAccount(){
iAccountDao.saveAccount();
} }
表现层
package lucky.ui; import lucky.dao.IAccountDao;
import lucky.service.IAccountService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext; /**
* 模拟一个表现层,用于调用业务层
*/
public class Client { public static void main(String[] args) {
//1.获取核心容器对象
ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml"); //2.根据id获取Bean对象,注意id是在bean.xml文件配置的
IAccountService as = (IAccountService)ac.getBean("accountServiceImpl");
// IAccountDao ad = (IAccountDao)ac.getBean("accountDaoImpl");
// System.out.println(as);
// System.out.println(ad);
as.saveAccount(); }
}
效果图:
@ Resource
作用:直接按照bean的id注入。它可以独立使用
属性:
name:用于指定bean的id。
package lucky.service.impl; import lucky.dao.IAccountDao;
import lucky.service.IAccountService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Component; import javax.annotation.Resource; /**
* 账户的业务层实现类
* xml的ioc配置
* <bean id="accountService" class="service.impl.AccountServiceImpl"></bean>
* <bean id="accountDao" class="dao.impl.AccountDaoImpl"></bean>
*/
@Component
public class AccountServiceImpl implements IAccountService { //指定用id为accountDao2所对应的AccountDaoImpl2生成的对象注入
@Resource(name = "accountDao2")
private IAccountDao iAccountDao; public void saveAccount(){
iAccountDao.saveAccount();
} }
以上三个注入都只能注入其他bean类型的数据,而基本类型和String类型无法使用上述注解实现。
另外,集合类型的注入只能通过XML来实现。
@ Value
作用:用于注入基本类型和String类型的数据
属性:
value:用于指定数据的值。它可以使用spring中SpEL(也就是spring的el表达式)
SpEL的写法:${表达式}
(3)用于改变作用范围的
他们的作用就和在bean标签中使用scope属性实现的功能是一样的
@Scope
作用:用于指定bean的作用范围
属性:
value:指定范围的取值。常用取值:singleton prototype
*
(4)和生命周期相关 了解
他们的作用就和在bean标签中使用init-method和destroy-methode的作用是一样的
PreDestroy
作用:用于指定销毁方法
PostConstruct
作用:用于指定初始化方法
10 Spring框架--基于注解的IOC配置的更多相关文章
- 10 Spring框架--基于注解和xml的配置的应用案例
1.项目结构 2.基于xml配置的项目 <1>账户的业务层接口及其实现类 IAccountService.java package lucky.service; import lucky. ...
- spring的基于注解的IOC配置
1.配置文件配置 <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http: ...
- Spring 框架的概述以及Spring中基于XML的IOC配置
Spring 框架的概述以及Spring中基于XML的IOC配置 一.简介 Spring的两大核心:IOC(DI)与AOP,IOC是反转控制,DI依赖注入 特点:轻量级.依赖注入.面向切面编程.容器. ...
- spring-第十七篇之spring AOP基于注解的零配置方式
1.基于注解的零配置方式 Aspect允许使用注解定义切面.切入点和增强处理,spring框架可以识别并根据这些注解来生成AOP代理.spring只是用了和AspectJ 5一样的注解,但并没有使用A ...
- spring的纯注解的IOC配置
package config; import com.mchange.v2.c3p0.ComboPooledDataSource;import org.apache.commons.dbutils.Q ...
- Spring中基于注解的IOC(二):案例与总结
2.Spring的IOC案例 创建maven项目 导入依赖 pom.xml xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
- Spring中基于注解的IOC(一):基础介绍
1. Spring中的常用注解 注解配置和xml配置要实现的功能都是一样的,都要降低程序的耦合,只是配置的形式不一样 xml中配置示例: 注解分类: 1.用于创建对象的注解 它们的作用就和在xml中编 ...
- 基于注解的IOC配置
1 明确 注解配置和XML配置要实现的功能都是一样的,都是要降低程序间的耦合.只是配置的形式不一样. 关于实际的开发中到底是使用XML还是注解,每家公司有着不同的习惯.具体问题具体分析. 2 环境搭建 ...
- Spring 基于注解的 IOC 配置
创建 spring 的 的 xml 配置 文件 <context:component-scan base-package="com.itheim"/> 指定创建容器时要 ...
随机推荐
- Windows 2008R2 安装PostgreSQL 11.6
前些天在CentOS 7.5 下安装了PostgreSQL 11.6.除了在无外网环境下需要另外配置之外,其他没有什么差别.今天主要写一下在Windows下面安装PostgreSQL的问题. 在官网看 ...
- A revolutionary architecture for building a distributed graph
转自:https://blog.apollographql.com/apollo-federation-f260cf525d21 What if you could access all of you ...
- 加密hashlib模块
目录 hashlib和hmac模块: hashlib模块: -hash: 特点: 大致流程: 注意: hmac模块: 特点: 注意:hmac模块只接受二进制数据的加密 hashlib和hmac模块: ...
- (LIS)最长上升序列(DP+二分优化)
求一个数列的最长上升序列 动态规划法:O(n^2) //DP int LIS(int a[], int n) { int DP[n]; int Cnt=-1; memset(DP, 0, sizeof ...
- struct iphdr
struct iphdr { #if defined(__LITTLE_ENDIAN_BITFIELD) __u8 ihl:, version:; #elif defined (__BIG_ENDIA ...
- 第12组 Alpha冲刺(4/6)
Header 队名:To Be Done 组长博客 作业博客 团队项目进行情况 燃尽图(组内共享) 由于这两天在修bug,燃尽图没有下降 展示Git当日代码/文档签入记录(组内共享) 注: 由于Git ...
- mysql 分组条件筛选
mysql> select * from table1; +----------+------------+-----+---------------------+ | name_new | t ...
- OpenFOAM——具有压差的平行平板间流动(泊肃叶流动)
本算例翻译整理自:http://the-foam-house5.webnode.es/products/chapter-1-plane-parallel-plates-case/ 这个算例中两平板间没 ...
- java web开发及Servlet常用的代码
日志 1.使用门面模式的slfj,并结合log4j,logback. 2.info.debug.error,要写清楚. 3.使用占位符,如下: log.info("用户id为: {} &qu ...
- 20189220 余超《Linux内核原理与分析》第八周作业
Linux内核如何装载和启动一个可执行程序 本章知识点 ELF(Executable and Linking Format)是一种对象文件的格式,用于定义不同类型的对象文件(Object files) ...