获取spring的IOC核心容器
ApplicationContext的三个常用实现类
- ClassPathXmlAppLicationContext=new ClassPathXmlApplicationContext("bean.xml");:他可以加载类路径下的配置文件,要求配置文件必须在类路径下(常用)
- FileSystemXmlAppLicationContext=new FileSystemXmlAppLicationContext("c:\users\zzy\bean.xml") : 可以加载磁盘任意路径下的配置文件(有访问权限)
- AnntotationConfigAppLicationContext=AnntotationConfigAppLicationContext(""):用于读取注解创建容器
核心容器两个接口引发的问题
- ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");它在创建核心容器时,是采用立即加载的策略,只要一读取完配置文件马上创建配置中的对象
- BeanFactory:在构建时采用延迟加载的策略,什么时候用,什么时候创建
依赖注入的三种方式
- 构造函数注入
-
使用set方法提供
- ref注入对象,vaule注入普通类型数据
- 使用注解提供
AOP
AOP
模块提供了
一个符合
AO
联盟标准的面向切面
编程的实现,它让你可以定义例如方
法拦截器和切点,从而将逻辑代码分开,降低它们之间的调合性
作用:
让你可以在不修改源码的前提下对功能进行修改
利用
source-level
的元数据
功能,还可以将各种行为信息合并到你的代码中
- aop包本身具有完整的AOP实现,但是只会使用Cglib或者JDK动态代理,在类加载时通过动态代理织入(补充一句:spring容器会在创建被代理bean时会自动创建代理bean)
- aspectj提供了非常完善的AOP能力,可以编译时织入、编译后织入、加载时织入,几乎能在java class的任何时刻使用织入功能;
因此可以说aspectj包是对aop包的aop功能进行支持;
核心类介绍
- DefaultlistableBeanFactory
DefaultlistableBeanFactory是bean加载的核心部分,继承了AbstractAutowireCapableBeanFactory并实现了ConfigurableListableBeanFactory和BeanDefinitionRegistry接口
Profile属性
这个特性我们就可以在项目中配置多套环境配置,常见用于不同数据库配置,程序会去bean节点查找是是否有profile属性
BeanDefinition解析注册(包含bean的解析,标签解析等)
- 处理了profile后进行XML读取,通过parseBeanDefinitions方法解析bean
bean两种声明方式
- 默认:<bean id="test" class="test.TestBean">
- 自定义<tx:annotation-driven/>
默认声明方式采用parseDefaultElement方法解析,否则使用delegate.parseCustomElement方法进行解析,而判断是否是默认命名空间还是自定义命名空间用node.getNamespaceURI()获取命名空间(自定义的需要实现接口和配置)
标签解析
默认标签解析
默认标签在==parseDefaultElement==函数中进行
spring的常用注解
@controller
@service
@Resposigy 持久层
@Component 在ioc中生成bean
@ComponentScan扫描什么包下的bean(默认和basePackes都可以)
@Configuration配置类
@Bean 方法返回的实体在ioc中生成bean
@value 用于注入参数
@PropertySource("classpath:jdbcConfig.properties")用于读取自定义key-value形式的文件,@Value读取
JdbcTemplate
//准备数据源,spring的内置数据源
DriverManagerDataSource ds = new DriverManagerDataSource();
ds.setDriverClassName("com.mysql.jdbc.Driver");
ds.setPassWord("123456");
//创建JdbcTempplate对象
JdbcTemplate jt = new JdbcTemplate();
//给jt设置数据源
jt.setDataSource(ds);
//执行操作
jt.execute("insert into account(name,money) values('cccc',10000)");
//增删改都是用update方法
jt.update("insert into account(name,money) values(?,?)","eee","3333");
//查询所有 1
List<Acount> accounts = jt.query("select * from account where money >?",new AccountRowMapper(),1000f);
//查询所有 2--常用
List<Account> accounts = jt.query("select * from account where money>?",new BeanPropertyRowMapper<Account>(Account.class),100f)
//查询一个,想反悔Integer就把Long.class改成Integer.class即可
Long count = jt.queryForObject("select count(*) from account where money>?",Long.class,100f)