Springframework 官方文档.
官网:https://spring.io/projects/spring-framework#overview
官方下载地址:https://repo.spring.io/release/org/springframework/spring/
Github:https://github.com/spring-projects/spring-framework
Maven仓库:导入webmvc包会自动导入相关依赖;jdbc用于和Mybatis整合。
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-webmvcartifactId>
<version>5.2.0.RELEASEversion>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-jdbcartifactId>
<version>5.2.0.RELEASEversion>
dependency>
Spring是一个开源的免费的框架(容器)!
Spring是一个轻量级的、非入侵式的框架!
控制反转(IOC)、面向切面编程(AOP)!
支持事务的处理,对框架整合的支持!
总结一句话:Spring就是一个轻量级的控制反转(IOC)和面向切面编程的框架!
在Spring的官网有这个介绍:现代化的java开发!说白了就是基于Spring的开发!
因为现在大多数公司都在使用SpringBoot进行快速开发,学习SpringBoot的前提,需要完全掌握Spring以及SpringMVC!承上启下的作用。
弊端:发展了太久之后,违背了原来的理念!配置十分繁琐,人称:“配置地狱”。
1.UserDao接口
2.UserDaoImpl实现类
3.UserService业务接口
4.UserServiceImpl业务实现类
在我们之前的业务中,用户的需求可能会影响我们原来的代码,我们需要根据用户的需求去修改源代码!如果程序代码量十分大,修改一次的成本代价十分昂贵!
我们使用一个Set接口实现,已经发生了革命性的变化!
private UserDao userDao;
//利用set进行动态实现值的注入!
public void setUserDao(UserDao userDao){
this.userDao = userDao;
}
这种思想,从本质上解决了问题,我们程序员不用再去管理对象的创建了。系统的耦合性大大降低,可以更加专注在业务的实现上。这是IOC的原型!
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-Whi7iPQw-1581759005110)(image-20200102111735712.png)]
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-cqnvkN4I-1581759005114)(image-20200102111753076.png)]
**控制反转IOC(Inversion of Control),是一种设计思想,DI(依赖注入)是实现IOC的一种方法,**也有人认为DI是IoC的另一种说法。没有IoC的程序中,我们使用面向对象编程,对象的创建与对象间的依赖关系完全硬编码在程序中,对象的创建由程序自己控制,控制反转后将对象的创建转移给第三方,个人认为所谓控制反转就是:获得依赖对象的方式反转了。
采用XML方式配置Bean的时候,Bean的定义信息是和实现分离的,而采用注解的方式可以把两者合为一体,Bean的定义信息直接以注解的形式定义在实现类中,从而达到了零配置的目的。
控制反转是一种通过描述(XML或注解)并通过第三方去生产或获取特定对象的方式。在Spring中实现控制反转的是IoC容器,其实现方式是依赖注入(Dependency Injection,DI)。
beans.xml官网配置文件:
<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
https://www.springframework.org/schema/beans/spring-beans.xsd">
beans>
bean对象添加:
<bean id="mysqlImpl" class="com.kuang.dao.UserDaoMysqlImpl">bean>
<bean id="oracleImpl" class="com.kuang.dao.UserDaoOracleImpl">bean>
<bean id="UserServiceImpl" class="com.kuang.service.UserServiceImpl">
<property name="userDao" ref="mysqlImpl">property>
bean>
Test方法:
//解析beans.xml文件,生成管理相应的Bean对象
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
//getBean:参数即为spring配置文件中bean的id
Hello hello = (Hello) context.getBean("hello");
System.out.println(hello.toString());
Hello对象是谁创建的?
hello对象是由Spring创建的。
Hello对象的属性是怎么设置的?
hello对象的属性是由Spring容器设置的。
这个过程就叫做控制反转:
控制:谁来控制对象的创建,传统应用程序的对象是由程序本身控制创建的,使用Spring后,对象是由Spring来创建的。
反转:程序本身不创建对象,而变成被动的接收对象。
依赖注入:就是利用set方法来进行注入。
IoC是一种编程思想,由主动的编程编程被动的接收。
可以通过new ClassPathXmlApplicationContext去浏览一下底层源码。
OK,到了现在,我们彻底不用在程序中去改动了,要实现不同的操作,只需要在xml配置文件中进行修改,所谓的IoC,一句话搞定:对象由Spring来创建,管理,装配!
IDEA快捷创建beans.xml文件,自动导入spring配置信息:
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-2garvyVi-1581759005117)(image-20200102152125077.png)]
使用无参构造创建对象,默认方式!
假设我们要使用有参构造创建对象。
1.下标赋值。
<bean id="user" class="com.kuang.pojo.User">
<constructor-arg index="0" value="憨批" />
bean>
2.类型赋值。
<bean id="user" class="com.kuang.pojo.User">
<constructor-arg type="java.lang.String" value="大憨批" />
bean>
3.参数名赋值。
<bean id="user" class="com.kuang.pojo.User">
<constructor-arg name="name" value="臭憨批" />
bean>
总结:在配置文件加载的时候,容器中管理的对象就已经初始化了!
<alias name="user" alias="userNew">alias>
<bean id="userT" class="com.kuang.pojo.UserT" name="user2,u2">
bean>
这个import,一般用于团队开发使用,他可以将多个配置文件,导入合并为一个。
假设,现在项目中有多个人开发,这三个人负责不同的类开发,不同的类需要注册在不同的bean中,我们可以利用import将所有人的beans.xml合并为一个总的!
<import resource="beans.xml"/>
<import resource="beans2.xml"/>
<import resource="beans3.xml"/>
使用的时候,直接使用总的配置就可以了。
之前已经介绍过。
【环境搭建】
复杂类型
public class Address {
private String address;
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
}
真实测试对象
public class Student {
private String name;
private Address address;
private String[] books;
private List<String> hobbies;
private Map<String,String> card;
private Set<String> games;
private String wife;
private Properties info;
}
beans.xml
<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="student" class="com.kuang.pojo.Student">
<property name="name" value="憨批"/>
bean>
beans>
测试类
public class MyTest {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
Student student = (Student) context.getBean("student");
System.out.println(student.getName());
}
}
完善注入:
<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="address" class="com.kuang.pojo.Address"/>
<bean id="student" class="com.kuang.pojo.Student">
<property name="name" value="憨批"/>
<property name="address" ref="address"/>
<property name="books">
<array>
<value>红楼梦value>
<value>西游记value>
<value>水浒传value>
<value>三国演义value>
array>
property>
<property name="hobbies">
<list>
<value>听歌value>
<value>敲代码value>
<value>看电影value>
list>
property>
<property name="card">
<map>
<entry key="身份证" value="1555555555"/>
<entry key="银行卡" value="5555555555"/>
map>
property>
<property name="games">
<set>
<value>lolvalue>
<value>wowvalue>
set>
property>
<property name="wife">
<null/>
property>
<property name="info">
<props>
<prop key="driver">com.mysql.jdbc.Driverprop>
<prop key="url">jdbc:mysql://localhost:3306/newsprop>
<prop key="root">rootprop>
<prop key="password">123456prop>
props>
property>
bean>
beans>
我们可以使用c和p命令空间进行注入:
使用:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:c="http://www.springframework.org/schema/c"
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="user" class="com.kuang.pojo.User" p:name="憨批" p:age="18"/>
<bean id="user2" class="com.kuang.pojo.User" c:age="18" c:name="憨批"/>
beans>
测试:
@Test
public void test2(){
ApplicationContext context = new ClassPathXmlApplicationContext("userBeans.xml");
User user = context.getBean("user2", User.class);
System.out.println(user);
}
注意点:p和c命名空间不能直接使用,需要导入xml约束!
xmlns:p="http://www.springframework.org/schema/p"
xmlns:c="http://www.springframework.org/schema/c"
代理模式**(Spring默认机制)**:get到的都是同一个对象!
<bean id="user2" class="com.kuang.pojo.User" c:age="18" c:name="憨批" scope="singleton"/>
原型模式:每次从容器中get的时候,都会产生一个新的对象!
<bean id="user2" class="com.kuang.pojo.User" c:age="18" c:name="憨批" scope="prototype"/>
其余的request、session、application、这些个只能在web开发中使用。
在Spring中有三种装配的方式:
环境搭建:一个人有两个宠物!
byName:会自动在容器上下文中查找和自己对象set方法后面的值对应的beanid!
<bean id="people" class="com.kuang.pojo.People" autowire="byName">
<property name="name" value="憨批"/>
bean>
byType:会自动在容器上下文中查找,和自己对象属性类型相同的bean!必须保证类型全局唯一。注意这个全局唯一的条件!!!!!!
<bean id="people" class="com.kuang.pojo.People" autowire="byType">
<property name="name" value="憨批"/>
bean>
小结:
jdk1.5支持注解,Spring2.5开始支持注解。
要使用注解实现自动装配xml头部配置文件发生变化:
导入约束:context约束。
配置注解的支持:context:annot-config/
<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 People(@Nullable String name){
this.name = name;
}
public @interface Autowired {
boolean required() default true;
}
测试代码:
public class People {
//如果显式定义了Autowired的required属性为false,说明这个对象可以为null,否则不允许为空
@Autowired(required = false)
private Dog dog;
@Autowired
private Cat cat;
private String name;
}
如果@Autowired自动装配的环境比较复杂,自动装配无法通过一个注解@Autowired完成的时候,我们可以使用@Qualifier(value=“xxx”)去配置@Autowired的使用,指定一个唯一的bean对象注入!
public class People {
@Autowired
@Qualifier(value="dog11")
private Dog dog;
@Autowired
@Qualifier(value="cat11")
private Cat cat;
private String name;
}
@Resource注解
public class People {
@Resource(name = "cat2")
private Cat cat;
}
小结:
@Resource和@Autowired的区别:
都是用来自动装配的,都可以放在属性字段上;
@Autowired通过byType的方式实现,而且必须要求这个对象存在!【常用】
@Resource默认通过byName的方式实现,如果找不到名字,则通过byType实现!如果两个都找不到的情况下,就报错!
执行顺序不同:@Autowired通过byType的方式实现,@Resource默认通过byName的方式实现。
再次注意ByType的类型全局唯一
在spring4之后,要使用注解开发,必须要保证aop的包导入了。
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-fcYc0sdI-1581759005123)(image-20200103105725321.png)]
使用注解需要导入context约束,增加注解的支持!
<context:component-scan base-package="com.kuang.pojo"/>
bean
属性如何注入
//等价于
//@Component 组件
@Component
public class User {
//相当于
public String name;
@Value("小憨批")
public void setName(String name){
this.name = name;
}
}
衍生的注解
@Component有几个衍生注解,我们在web开发中,会按照mvc三层架构分层!
这四个注解功能都是一样的,都是代表将某个类注册到Spring中,装配Bean!
自动装配
-@Autowired:自动装配通过类型,名字
如果Autowired不能唯一自动装配上属性,则需要通过@Qualifier(value="xxx")
-@Nullable:字段标记了这个注解,说明这个字段可以为null
-@Resource:自动装配通过名字,类型
作用域
@Scope("singleton")
public class User {
//相当于
public String name;
@Value("小憨批")
public void setName(String name){
this.name = name;
}
}
小结
xml与注解:
xml与注解最佳实践:
<context:component-scan base-package="com.kuang"/>
<context:annotation-config/>
我们现在要完全不适用Spring的xml配置了,全权交给java来做!
javaConfig是Spring的一个子项目,在Spring4之后,它成为了一个核心功能。
实体类:
@Component
public class User {
private String name;
public String getName() {
return name;
}
@Value("小笨蛋")
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "User{" +
"name='" + name + '\'' +
'}';
}
}
import com.kuang.pojo.User;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
//这个也会被Spring容器托管,注册到容器中,因为本来就是一个@Component
//@Configuration代表这是一个配置类,就和我们之前看的beans.xml
@Configuration
@ComponentScan("com.kuang.pojo")
@Import(KuangConfig2.class )
public class KuangConfig {
//注册一个bean,就相当于我们之前写的一个bean标签
//这个方法的名字,就相当于bean标签中的id属性
//这个方法的返回值,就相当于bean标签中的class属性
@Bean
public User getUser(){
return new User();//就是返回要注入到bean的对象
}
}
测试类:
public class MyTest {
public static void main(String[] args) {
//如果完全使用了配置类方式去做,我们就只能通过AnnotationConfig上下文来获取容器,通过配置类的class对象加载!
ApplicationContext context = new AnnotationConfigApplicationContext(KuangConfig.class);
User getUser = (User) context.getBean("getUser");
System.out.println(getUser.getName());
}
}
这种纯java的配置方式,在SpringBoot中随处可见!
为什么要学习代理模式?因为这就是SpringAOP的底层!【SpringAOP 和 SpringMVC 面试必问】
代理模式的分类:
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-XW9RDr3d-1581759005125)(image-20200104125508118.png)]
角色分析:
代码步骤:
接口
//租房
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() {
}
public Proxy(Host host) {
this.host = host;
}
public void rent(){
seeHouse();
host.rent();
hetong();
fee();
}
//看房
public void seeHouse(){
System.out.println("中介带你看房");
}
//签合同
public void hetong(){
System.out.println("签合同");
}
//收费
public void fee(){
System.out.println("收取中介费用");
}
}
客户端访问
public class Client {
public static void main(String[] args) {
//房东要租房子
Host host = new Host();
//代理,中介帮房东租房子,但是呢?代理角色一般会有一些附属操作!
Proxy proxy = new Proxy(host);
proxy.rent();
}
}
代理模式的好处:
缺点:
代码:对应08-demo02
聊聊AOP
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-z90KOUPX-1581759005129)(image-20200105210505898.png)]
需要了解两个类:Proxy:代理;InvocationHandler:调用处理程序
InvocationHandler
个人理解:这个玩意就是用来生成代理的,理解为一个用来生成代理的类,从而让我们不需要去为每个代理都单独生成一个类。可以就这样固定下来用。(感觉有点DI的意思!!)
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
public class ProxyInvocationHandler implements InvocationHandler {
//被代理的接口
private Object target;
public void setTarget(Object target){
this.target = target;
}
//生成得到代理类
public Object getProxy(){
return Proxy.newProxyInstance(this.getClass().getClassLoader(),target.getClass().getInterfaces(),this);
}
//处理代理实例,返回代理结果
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
log(method.getName());//用到了反射
//动态代理的本质,就是使用反射机制实现
Object result = method.invoke(target,args);
return result;
}
public void log(String msg){
System.out.println("执行了"+msg+"方法");
}
}
测试类:
代码很清晰:首先是new了真实角色和一个动态代理创建的实体,然后进行设置,最后用。
public class Client {
public static void main(String[] args) {
//真实角色
UserService userService = new UserServiceImpl();
//代理角色 此时还不存在
ProxyInvocationHandler pih = new ProxyInvocationHandler();
//设置要代理的对象
pih.setTarget(userService);
//动态生成代理
UserService proxy = (UserService) pih.getProxy();
proxy.add();
proxy.delete();
}
}
当我们再想要去生成多个代理对象的时候,只需要去创建不同的userService和其方法,无需再对每个代理进行设置。
动态代理的好处:
AOP(Aspect Oriented Programming)意为:面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生泛型,利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的频率。
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-FOeTEVqC-1581759005131)(image-20200106085441897.png)]
提供声明式事务;允许用户自定义切面
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-tcqruT25-1581759005133)(image-20200106090325307.png)]
SpringAOP中,通过Advice定义横切逻辑,Spring中支持5种类型的Advice:
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-LQbnEnNw-1581759005136)(image-20200106090428369.png)]
即AOP在不改变原有代码的情况下,去增加新的功能。
【重点】使用AOP织入,需要导入一个依赖包。
<dependency>
<groupId>org.aspectjgroupId>
<artifactId>aspectjweaverartifactId>
<version>1.9.5version>
dependency>
方式一:使用Spring的API接口【主要SpringAPI接口实现】
第一步
创建接口及实现类:
public interface UserService {
public void add();
public void delete();
public void update();
public void select();
}
public class UserServiceImpl implements UserService {
@Override
public void add() {
System.out.println("执行增加");
}
@Override
public void delete() {
System.out.println("执行删除");
}
@Override
public void update() {
System.out.println("执行更改");
}
@Override
public void select() {
System.out.println("执行查找");
}
}
这里是需要AOP增加的业务 比如 插入日志
import org.springframework.aop.MethodBeforeAdvice;
import java.lang.reflect.Method;
public class BeforeLog implements MethodBeforeAdvice {
/*
* method:要执行的目标对象的方法
* args:参数
* target:目标对象
* */
@Override
public void before(Method method, Object[] args, Object target) throws Throwable {
System.out.println(target.getClass().getName()+"的"+method.getName()+"方法被执行了");
}
}
第二步:
配置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:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">
<!--注册bean-->
<bean id="beforeLog" class="com.lucius.log.BeforeLog"></bean>
<bean id="afterLog" class="com.lucius.log.AfterLog"></bean>
<bean id="userService" class="com.lucius.service.UserServiceImpl"></bean>
<!--方式一:使用原生Spring API接口-->
<!--配置aop:需要导入aop的约束-->
<aop:config>
<!--切入点:expression:表达式,execution(要执行的位置!* * * * *)-->
<aop:pointcut id="pointcut" expression="execution(* com.lucius.service.UserServiceImpl.*(..))"/>
<!--执行环绕增加!-->
<aop:advisor advice-ref="beforeLog" pointcut-ref="pointcut"/>
<aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
</aop:config>
</beans>
注意此时的xml文件中的头部增加了关于aop的配置地址
另外一个需要被关注的就是这个表达式
<!--切入点:expression:表达式,execution(要执行的位置!* * * * *)-->
<aop:pointcut id="pointcut" expression="execution(* com.lucius.service.UserServiceImpl.*(..))"/>
第三步:
测试类
import com.lucius.service.UserService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class MyTest {
public static void main(String[] args) {
ApplicationContext context= new ClassPathXmlApplicationContext("applicationConfig.xml");
UserService userService=(UserService) context.getBean("userService");
userService.add();
}
}
方式二:自定义来实现AOP【主要是切面定义】
实际上理解官方文档中描写到的切面定义:就是可以理解为自定义的一个需要被插入的类!
第一步:
写这个自定义想要被插入的类(AOP)
public class DiyCutPoint {
public void before(){
System.out.println("======方法执行前======");
}
public void after(){
System.out.println("======方法执行后======");
}
}
第二步:
配置xml文件
<!--方式二:自定义类 理解切面-->
<bean id="diyCutPoint" class="com.lucius.diy.DiyCutPoint"></bean>
<aop:config>
<aop:aspect ref="diyCutPoint">
<aop:pointcut id="pointcut" expression="execution(* com.lucius.service.UserServiceImpl.*(..))"/>
<aop:before method="before" pointcut-ref="pointcut"></aop:before>
<aop:after method="after" pointcut-ref="pointcut"></aop:after>
</aop:aspect>
</aop:config>
第二种方式更加简单,但是实现的功能更加少了。比如不能使用反射获取执行方法的名称。
方式三:使用注解实现
第一步:
在实现类里面就使用注解
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
@Aspect//标注这个类是一个切面
public class AnnotationCutpoint {
@Before("execution(* com.lucius.service.UserServiceImpl.*(..))")
public void before(){
System.out.println("======方法执行前======");
}
@After("execution(* com.lucius.service.UserServiceImpl.*(..))")
public void after(){
System.out.println("======方法执行后======");
}
}
第二步:
在xml文件中进行配置,注意要开启注解支持
<!--方式三:注解方法实现-->
<bean id="annotationCutpoint" class="com.lucius.diy.AnnotationCutpoint"></bean>
<!--开启注解支持! JDK(默认proxy-target-class="false") cglib(proxy-target-class="true")-->
<aop:aspectj-autoproxy proxy-target-class="false"/>
步骤:
事务ACID原则:
13.2 Spring中的事务管理
思考:
为什么需要事务?