Spring就是一个轻量级的控制反转(IOC)和面向切面编程(AOP)的框架
弊端:发展太久,违背了原来的理念。配置十分繁琐!
这种思想,从本质上解决了问题,程序员不用再管对象的创建。系统的耦合性大大降低,可以更加专注在业务的实现上,这是IOC的原型。
IOC本质
控制反转IoC(Inversion of Control),是一种设计思想,DI(依赖注入)是实现IoC的一种方法,也有人认为DI只是IoC的另一种说法。没有IoC的程序中 , 我们使用面向对象编程 , 对象的创建与对象间的依赖关系完全硬编码在程序中,对象的创建由程序自己控制,控制反转后将对象的创建转移给第三方,个人认为所谓控制反转就是:获得依赖对象的方式反转了。
采用XML方式配置Bean的时候,Bean的定义信息是和实现分离的,而采用注解的方式可以把两者合为一体,Bean的定义信息直接以注解的形式定义在实现类中,从而达到了零配置的目的。
控制反转是一种通过描述(XML或注解)并通过第三方去生产或获取特定对象的方式。在Spring中实现控制反转的是IoC容器,其实现方法是依赖注入(Dependency Injection,DI)。
spring 需要导入commons-logging进行日志记录 . 我们利用maven , 他会自动下载对应的依赖项 .
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-webmvcartifactId>
<version>5.1.10.RELEASEversion>
dependency>
public class Hello {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public void show(){
System.out.println("Hello"+ name );
}
}
<beans xmlns="http://www.springframework.org/schema/beans"
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">
<bean id="hello" class="com.kuang.pojo.Hello">
<property name="name" value="Spring"/>
bean>
beans>
@Test
public void test(){
//解析beans.xml文件 , 生成管理相应的Bean对象
ApplicationContext context = newClassPathXmlApplicationContext("beans.xml");
//getBean : 参数即为spring配置文件中bean的id .
Hello hello = (Hello) context.getBean("hello");
hello.show();
}
思考问题 ?
Hello 对象是谁创建的 ?
hello 对象是由Spring创建的
Hello 对象的属性是怎么设置的 ?
hello 对象的属性是由Spring容器设置的 ,
这个过程就叫控制反转
控制 : 谁来控制对象的创建 , 传统应用程序的对象是由程序本身控制创建的 , 使用Spring后 , 对象是由Spring来创建的 .
反转 : 程序本身不创建对象 , 而变成被动的接收对象 .
依赖注入 : 就是利用set方法来进行注入的.
IOC是一种编程思想 , 由主动的编程变成被动的接收 .
可以通过newClassPathXmlApplicationContext去浏览一下底层源码 .
OK , 到了现在 , 我们彻底不用再程序中去改动了 , 要实现不同的操作 , 只需要在xml配置文件中进行修改 , 所谓的IoC,一句话搞定 : 对象由Spring 来创建 , 管理 , 装配!
使用无参构造函数创建对象,默认
假设要通过有参构造函数创建对象
下标赋值
<bean id="user" class="com.da.pojo.User">
<construsctor-arg index="0" value="无敌大天才"/>
bean>
类型(不建议使用)
<bean id="user" class="com.da.pojo.User">
<construsctor-arg type="java.lang.String" value="超级无敌大天才"/>
bean>
参数名
<bean id="user" class="com.da.pojo.User">
<construsctor-arg name="name" value="上天入地超级无敌大天才"/>
bean>
总结:在配置文件加载的时候,容器中管理的对象就已经初始化了
<alias name="user" alias="userNew"/>
<bean id="userT" class="com.da.pojo.UserT" name="user2 u2,u3;u4">
<property name="name" value="啊,你说什么?"/>
bean>
一般用于团队开发使用,它可以将多个配置文件,导入合并为一个
假设,现在项目中有多个人开发,这三个人复制不同的类开发,不同的类需要注册在不同的bean中,我们可以利用import将所有人的beans.xml
合并为一个总的
spring-a-beans.xml
spring-b-beans.xml
spring-c-beans.xml
applicationContext.xml
<import resource="spring-a-beans.xml"/>
<import resource="spring-b-beans.xml"/>
<import resource="spring-c-beans.xml"/>
使用的时候直接使用总的就可以了
<bean id="beanOne" class="x.y.ThingOne">
<constructor-arg ref="beanTwo"/>
<constructor-arg ref="beanThree"/>
bean>
String
、null
<bean class="ExampleBean">
<property name="email" value=""/>
bean>
<bean class="ExampleBean">
<property name="email">
<null/>
property>
bean>
props
、list
、map
、set
<bean id="moreComplexObject" class="example.ComplexObject">
<property name="adminEmails">
<props>
<prop key="administrator">[email protected]prop>
<prop key="support">[email protected]prop>
<prop key="development">[email protected]prop>
props>
property>
<property name="someList">
<list>
<value>a list element followed by a referencevalue>
<ref bean="myDataSource" />
list>
property>
<property name="someMap">
<map>
<entry key="an entry" value="just some string"/>
map>
property>
<property name="someSet">
<set>
<value>just some stringvalue>
<ref bean="myDataSource" />
set>
property>
bean>
可以使用 p 命名空间和 c 命名空间进行注入
官方示例:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean name="classic" class="com.example.ExampleBean">
<property name="email" value="[email protected]"/>
bean>
<bean name="p-namespace" class="com.example.ExampleBean"
p:email="[email protected]"/>
beans>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:c="http://www.springframework.org/schema/c"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="beanTwo" class="x.y.ThingTwo"/>
<bean id="beanThree" class="x.y.ThingThree"/>
<bean id="beanOne" class="x.y.ThingOne">
<constructor-arg name="thingTwo" ref="beanTwo"/>
<constructor-arg name="thingThree" ref="beanThree"/>
<constructor-arg name="email" value="[email protected]"/>
bean>
<bean id="beanOne" class="x.y.ThingOne" c:thingTwo-ref="beanTwo"
c:thingThree-ref="beanThree" c:email="[email protected]"/>
beans>
注意点:p命名和c命名空间不能直接使用,需要导入xml约束
xmlns:p="http://www.springframework.org/schema/p"
xmlns:c="http://www.springframework.org/schema/c"
Scope | Description |
---|---|
singleton | (Default) Scopes a single bean definition to a single object instance for each Spring IoC container. |
prototype | Scopes a single bean definition to any number of object instances. |
request | Scopes a single bean definition to the lifecycle of a single HTTP request. That is, each HTTP request has its own instance of a bean created off the back of a single bean definition. Only valid in the context of a web-aware Spring ApplicationContext . |
session | Scopes a single bean definition to the lifecycle of an HTTP Session . Only valid in the context of a web-aware Spring ApplicationContext . |
application | Scopes a single bean definition to the lifecycle of a ServletContext . Only valid in the context of a web-aware Spring ApplicationContext . |
websocket | Scopes a single bean definition to the lifecycle of a WebSocket . Only valid in the context of a web-aware Spring ApplicationContext . |
1.单例模式(Spring默认机制)
<bean id="accountService" class="com.something.DefaultAccountService" scope="singleton"/>
2.原型模式:每次从容器中get
的时候,都会产生一个新对象
<bean id="accountService" class="com.something.DefaultAccountService" scope="prototype"/>
3.其余的request、session、application,这些只能在web开发中使用
在Spring中有三种装配的方式:
<bean id="user" class="com.da.pojo.User" autoWire="byName">
<construsctor-arg name="name" value="上天入地超级无敌大天才"/>
bean>
<bean id="user" class="com.da.pojo.User" autoWire="byType">
<construsctor-arg name="name" value="上天入地超级无敌大天才"/>
bean>
小结:
- byname的时候,需要保证所有bean的id唯一,并且这个bean需要和自动注入的属性的set方法的值一致
- bytype的时候,需要保证所有bean的class唯一,并且这个bean需要和自动注入的属性的类型一致
使用注解须知:
<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
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd">
<context:annotation-config/>
beans>
@Autowired
直接在属性上使用即可;也可以在set方法上使用
使用Autowired就可以不写Set方法,前提是自动装配的属性在IOC(Spring)容器中存在,且符合名字byName
科普:
@Nullable 字段标记了这个注解,说明这个字段可以为null;
public @interface Autowired{
boolean required() default true;
}
如果@Autowired自动装配的环境比较复杂,自动装配无法通过一个注解【@Autowired】完成的时候,我们可以使用@Qualifier(value=“xxx”)去配置@Autowired的使用,指定一个唯一的bean对象注入!
public class People{
@AutoWired
@Qualifier(value="talent")
private Talent talent;
}
@Resource注解
public class People{
@Resource(name="talent")
private Talent talent;
@Resource
private Dog dog;
}
小结:
@Resource和@Autowired的区别:
- 都是用来自动装配的,都可以放在属性字段上
- @Autowired通过byType的方式实现,而且必须要求这个对象存在
- @Resource默认通过byname的方式实现,如果找不到名字,则通过byType实现!如果两个都找不到就报错
- 执行顺序不同:@Autowired通过byType的方式实现;@Resource通过byname的方式实现
在Spring4之后,要使用注解开发,必须保证aop的包导入了
使用注解需要导入context约束,增加注解的支持(注解驱动或自动扫描)
<context:component-scan base-package="com.core"/>
<context:annotation-config/>
小结:
xml与注解:
- xml更加万能,适用于任何场合,维护简单方便
- 注解 不是自己的类使用不了,维护相对复杂
xml与注解的最佳实践:
- xml只用来管理bean
- 注解只负责完成属性的注入
- 使用过程中只需要注意:必须让注解生效,就需要开启注解的支持
JavaConfig是Spring的一个子项目,在Spring4之后,它成为了一个核心功能
实体类
//这个注解说明这个类被Spring接管了,注册到了容器中
@Component
public class user{
private String name;
private String getName(){
return name;
}
@Value("datiancai")//属性注入值
public void setName(String name){
this.name=name;
}
@Override
public String toString(){
return "User{" + "name='" + name + "\'" + "}";
}
}
配置文件
//@Configuration代表这是一个配置类,等价于beans.xml
@Configuration
@ComponentScan("com.core")
@Import(datiancaiConfig.class)
public class MatchlessGeniusConfig{
//注册一个bean,相当于
//这个方法的名字相当于bean标签的id属性
//这个方法的返回值,相当于bean标签的class属性
@Bean
public User user(){
return new user();//返回要注入到bean的对象
}
}
代理模式的分类:
角色分析:
代码步骤:
接口
//租房
public interface Rent{
public void rent();
}
真实角色
//房东
public class Host implements Rent{
public void rent(){
system.out.println("房东要出租房子");
}
}
代理角色
public class Proxy implements Rent{
private Host host;
public Proxy(Host host){
this.host = host;
}
public void rent(){
seeHouse();
host.rent();
hetong();
fare();
}
//看房
public void seeHouse(){
system.out.println("中介带你看房");
}
//合同
public void hetong(){
system.out.println("签租赁合同");
}
//收中介费
public void fare(){
system.out.println("收中介费");
}
}
客户端访问代理角色
public class Client{
public static void main(String[] args) {
//房东要租房子
Host host = new Host();
//代理
Proxy proxy = new Proxy(host);
//不用面对房东,直接找中介租房
proxy.rent();
}
}
代理模式的好处:
缺点:
需要了解两个类:Proxy:代理,InvocationHandler:调用处理程序
动态代理的好处:
代码步骤:
代理角色
public class ProxyInvocaionHandler implements InvocationHandler {
//被代理的接口
private Object target;
public void settarget(Object target){
this.target = target;
}
//生成得到代理类
public void getProxy(){
return Proxy.newProxyInstance(this.getClass().getClassLoader(),
target.getClass().getInterfaces(),this);
}
//处理代理实例,并返回结果
public Object invoke(Object proxy, Mehtod method, Object[] args) throws Throwable{
log(method.getName());
//动态代理的本质,就是使用反射机制实现
Object result = method.invok(target,args);
return null;
}
public void log(String msg){
System.out.println("执行了"+msg+"方法");
}
}
客户端访问
public class Client{
public static void main(String[] args) {
//真实角色
UserServiceImpl userService = new UserServiceImpl();
//代理角色
ProxyInvocaionHandler pih = new ProxyInvocaionHandler();
pih.setTarget(userService);//设置要代理的对象
//动态生成代理类
UserService proxy = (UserService) pih.getProxy();
proxy.add();
}
}
AOP(Aspect Oriented Programming)意为面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低提高程序的可重用性,同时提高了开发效率。
提供声明式事务;允许用户自定义切面
SpringAOP中,通过Advice定义横切逻辑,Spring中支持5种类型的Advice:
即AOP在不改变原有代码的情况下,去增加新的功能
【重点】使用AOP织入,需要导入一个依赖包
<dependency>
<groupId> org.aspectjgroupId >
<artifactId> aspectjweaverartifactId >
<version> 1.9.4version >
dependency>
方式一:使用Spring的API接口
<aop:config>
<aop:pointcut id="pointcut" expression="execution(* com.tiancai.service.UserServiceImpl.*(..))"/>
<aop:advisor advice-ref="log" pointcut="pointcut"/>
<aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
aop:config>
方式二:自定义类实现AOP
<bean id="diy" class="com.tiancai.diy.DiyPointCut"/>
<aop:config>
<aop:aspect ref="diy">
<aop:pointcut id="point" expression="execution(* com.tiancai.service.UserServiceImpl.*(..))"/>
<aop:before method="before" pointcut-ref="point"/>
<aop:after method="after" point-ref="point"/>
aop:aspect>
aop:config>
方式三:使用注解实现
@Aspect
public class AnnotationPointCut {
@Before("execution(* com.tiancai.service.UserServiceImpl.*(..))")
public void before(){
System.out,println("=========方法执行前=========");
}
@After("execution(* com.tiancai.service.UserServiceImpl.*(..))")
public void after(){
System.out,println("=========方法执行后=========");
}
//在环绕增强中,我们可以给定一个参数,代表我们要获取处理切入的点
@Around("execution(* com.tiancai.service.UserServiceImpl.*(..))")
public void around(ProceedingJoinPoint pjp){
System.out,println("环绕前");
//执行方法
Object proceed = pjp.proceed();
System.out,println("环绕后");
}
}
<bean id="annotationPointCut" class="com.tiancai.diy.AnnotationPointCut"/>
<aop:aspectj-autoproxy/>
步骤:
事务ACID原则:
思考:
为什么需要事务?
@Autowired:自动装配通过类型、名字
如果Autowired
不能唯一自动装配上属性,则需要通过@Qualifier(value="xxx")
@Nullable:字段标记了这个注解,说明这个字段可以为null
@Resource:自动装配通过名字、类型
@Component:组件,放在类上,说明这个类被Spring管理了,就是bean;按mvc三层架构分层
@ComponentScan:定义扫描的路径从中找出标识了需要装配的类自动装配到spring的bean容器中
@Value:读配置文件的属性
@Configuration:声明配置类,可以启动组件扫描
@Bean:产生bean对象
@Import:导入
@Override:重写