十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
网址:【【尚硅谷】SSM框架全套教程,MyBatis+Spring+SpringMVC+SSM整合一套通关】https://www.bilibili.com/video/BV1Ya411S7aT?p=4&vd_source=10e3dfac95ac3a6883b1f8a6c3bc65d5
成都创新互联公司主营通榆网站建设的网络公司,主营网站建设方案,成都APP应用开发,通榆h5微信小程序搭建,通榆网站营销推广欢迎通榆等地区企业咨询最近看视频学习的感悟
JAVA重新开始
这个笔记是我根据视频的P数来记的,把一些网上随时可以搜到的(比如mybatis历史之类的)部分删减,记录下了自己觉得较为重要的知识点,同时还记录了老师在课上讲的,但是可能并没有在官方给的笔记里展现出来的东西。
目前更新到p93
p63 spring概述Spring:让java更简单
Spring 框架来创建性能好、易于测试、可重用的代码。
创建性能好:
以前我们在控制层 下面是service层,下面是Dao层
每一层都要new一个对象 ,现在我们可以直接接收Spring直接提供给我们的对象
易于测试:
可以使用单元测试来对我们的代码进行测试
可重用:
之前:
事务管理:不好封装
p64 framework简介和特性1 特性
小。对领域模型可以做到零污染;对功能性组件也只需要使用几个简单的注解进行标记,完全不会
破坏原有结构,反而能将组件结构进一步简化。这就使得基于 Spring Framework 开发应用程序
时结构清晰、简洁优雅。
变成环境将资源准备好,我们享受资源注入。
能。
的管理,替程序员屏蔽了组件创建过程中的大量细节,极大的降低了使用门槛,大幅度提高了开发
效率。
和 Java 注解组合这些对象。这使得我们可以基于一个个功能明确、边界清晰的组件有条不紊的搭
建超大型复杂应用系统。
声明式:很多以前需要编写代码才能实现的功能,现在只需要声明需求即可由框架代为实现。
一站式:在 IOC 和 AOP 的基础上可以整合各种企业应用的开源框架和优秀的第三方类库。而且
Spring 旗下的项目已经覆盖了广泛领域,很多方面的功能性需求可以在 Spring Framework 的基
础上全部使用 Spring 来实现。
2、Spring Framework五大 功能模块
功能模块 | 功能介绍 |
---|---|
Core Container | 核心容器,在 Spring 环境下使用任何功能都必须基于 IOC 容器。 |
AOP&Aspects | 面向切面编程 |
Testing | 提供了对 junit 或 TestNG 测试框架的整合。 |
Data Access/Integration | 提供了对数据访问/集成的功能。 |
Spring MVC | 提供了面向Web应用程序的集成功能。 |
IOC:Inversion of Control,翻译过来是反转控制。
理解:
原来是我们自己获取容器资源,这就要求我们对我们需要获取的资源了如指掌
现在反过来,资源自己给我们提供资源,我们不需要了解我们获取的资源,这波就是反转
①获取资源的传统方式自己做饭:买菜、洗菜、择菜、改刀、炒菜,全过程参与,费时费力,必须清楚了解资源创建整个过程中的全部细节且熟练掌握。
在应用程序中的组件需要获取资源时,传统的方式是组件主动的从容器中获取所需要的资源,在这样的模式下开发人员往往需要知道在具体容器中特定资源的获取方式,增加了学习成本,同时降低了开发效率。
②反转控制方式获取资源点外卖:下单、等、吃,省时省力,不必关心资源创建过程的所有细节。
反转控制的思想完全颠覆了应用程序组件获取资源的传统方式:反转了资源的获取方向——改由容器主动的将资源推送给需要的组件,开发人员不需要知道容器是如何创建资源对象的,只需要提供接收资源的方式即可,极大的降低了学习成本,提高了开发的效率。这种行为也称为查找的被动形式。
很多时候,点外卖要比自己做的还要香,比如我们想要单例模式,以前要自己写,现在可以直接让Spring给我一个
③DIDI:Dependency Injection,翻译过来是依赖注入。
DI 是 IOC 的另一种表述方式:即组件以一些预先定义好的方式(例如:setter 方法)接受来自于容器的资源注入。相对于IOC而言,这种表述更直接。
所以结论是:IOC 就是一种反转控制的思想, 而 DI 是对 IOC 的一种具体实现。
p66 ioc容器在Spring中的实现Spring 的 IOC 容器就是 IOC 思想的一个落地的产品实现。IOC 容器中管理的组件也叫做 bean。在创建bean 之前,首先需要创建 IOC 容器。Spring 提供了 IOC 容器的两种实现方式:
①BeanFactory这是 IOC 容器的基本实现,是 Spring 内部使用的接口。面向 Spring 本身,不提供给开发人员使用。
②ApplicationContextBeanFactory 的子接口,提供了更多高级特性。面向Spring 的使用者,几乎所有场合都使用ApplicationContext 而不是底层的 BeanFactory。
③ApplicationContext的主要实现类类型名 | 简介 |
---|---|
ClassPathXmlApplicationContext | 通过读取类路径下的 XML 格式的配置文件创建 IOC 容器对象(主要用这个) |
FileSystemXmlApplicationContext | 通过文件系统路径读取 XML 格式的配置文件创建 IOC 容器对象 |
ConfigurableApplicationContext | ApplicationContext 的子接口,包含一些扩展方法refresh() 和 close() ,让 ApplicationContext 具有启动、关闭和刷新上下文的能力。 |
WebApplicationContext | 专门为 Web 应用准备,基于 Web 环境创建 IOC 容器对象,并将对象引入存入 ServletContext 域中。 |
org.springframework spring-context 5.3.1 junit junit 4.12 test
③创建类HelloWorldpublic class HelloWorld {public void sayHello(){System.out.println("helloworld");
}
}
⑤在Spring的配置文件中配置bean新建spring的配置文件,最好命名为applicationContext
⑥创建测试类测试@Test
public void testHelloWorld(){ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
HelloWorld helloworld = (HelloWorld) ac.getBean("helloworld");
helloworld.sayHello();
}
⑦注意Spring 底层默认通过反射技术调用组件类的无参构造器来创建组件对象,这一点需要注意。如果在需要无参构造器时,没有无参构造器,则会抛出下面的异常:
P68 iOC容器创建对象的方式org.springframework.beans.factory.BeanCreationException: Error creating bean with name
‘helloworld’ defined in class path resource [applicationContext.xml]: Instantiation of bean
failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed
to instantiate [com.atguigu.spring.bean.HelloWorld]: No default constructor found; nested
exception is java.lang.NoSuchMethodException: com.atguigu.spring.bean.HelloWorld.
()
一个普通的User类
然后在测试类中:
@Test
public void test(){ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
User user=ac.getBean(User.class);
System.out.println(user);
}
P69 获取bean的三种方式和注意事项我们最常用的是根据类型获取
①方式一:根据id获取由于 id 属性指定了 bean 的唯一标识,所以根据 bean 标签的 id 属性可以精确获取到一个组件对象。
上个实验中我们使用的就是这种方式。
②方式二:根据类型获取@Test
public void testHelloWorld(){ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
HelloWorld bean = ac.getBean(HelloWorld.class);
bean.sayHello();
}
③方式三:根据id和类型@Test
public void testHelloWorld(){ApplicationContext ac = newClassPathXmlApplicationContext("applicationContext.xml");
HelloWorld bean = ac.getBean("helloworld", HelloWorld.class);
bean.sayHello();
}
④注意当根据类型获取bean时,要求IOC容器中指定类型的bean有且只能有一个
当IOC容器中一共配置了两个:
根据类型获取时会抛出异常:
⑤扩展org.springframework.beans.factory.NoUniqueBeanDefinitionException: No qualifying bean
of type ‘com.atguigu.spring.bean.HelloWorld’ available: expected single matching bean but
found 2: helloworldOne,helloworldTwo
如果组件类实现了接口,根据接口类型可以获取 bean 吗?
可以,前提是bean唯一
如果一个接口有多个实现类,这些实现类都配置了 bean,根据接口类型可以获取 bean 吗?
⑥结论不行,因为bean不唯一
根据类型来获取bean时,在满足bean唯一性的前提下,其实只是看:『对象 instanceof 指定的类
型』的返回结果,只要返回的是true就可以认定为和类型匹配,能够获取到。
P70 依赖注入之setter注入在之前例子的基础上,在配置文件中配置bean的时候使用property标签配置属性值
P71 依赖注入之构造器注入构造器注入用的不多
①在Student类中添加有参构造public Student(Integer id, String name, Integer age, String sex) {this.id = id;
this.name = name;
this.age = age;
this.sex = sex;
}
②配置bean
③测试注意:
constructor-arg标签还有两个属性可以进一步描述构造器参数:
- index属性:指定参数所在位置的索引(从0开始)
- name属性:指定参数名
@Test
public void testDIBySet(){ApplicationContext ac = new ClassPathXmlApplicationContext("springdi.xml");
Student studentOne = ac.getBean("studentTwo", Student.class);
System.out.println(studentOne);
}
P72 依赖注入之特殊值处理
1 null
2 特殊字符注意:
以上写法,为name所赋的值是字符串null
当需要使用< >等字符时,需要避免这两个符号和xml标签中的<>的冲突
方法1:
方法2:
CDATA节
p73 为类类型属性赋值(引用外部bean)
①创建班级类Clazz@Data
public class Clazz implements Serializable {private Integer clazzId;
private String clazzName;
}
②修改Student类在Student类中添加以下代码:
private Clazz clazz;
public Clazz getClazz() {return clazz;
}
public void setClazz(Clazz clazz) {this.clazz = clazz;
}
③方式一:引用外部已声明的bean配置Clazz类型的bean:
为Student中的clazz属性赋值:
错误演示:
p74 为类类型属性赋值(内部bean和级联的方式) ④方式二:内部bean如果错把ref属性写成了value属性,会抛出异常: Caused by: java.lang.IllegalStateException:
Cannot convert value of type ‘java.lang.String’ to required type
‘com.atguigu.spring.bean.Clazz’ for property ‘clazz’: no matching editors or conversion
strategy found
意思是不能把String类型转换成我们要的Clazz类型,说明我们使用value属性时,Spring只把这个
属性看做一个普通的字符串,不会认为这是一个bean的id,更不会根据它去找到bean来赋值
③方式三:级联属性赋值
p75 为数组类型赋值
①修改Student类在Student类中添加以下代码:
private String[] hobbies;
public String[] getHobbies() {return hobbies;
}
public void setHobbies(String[] hobbies) {this.hobbies = hobbies;
}
②配置bean抽烟 喝酒 烫头
p76 为list集合类型赋值
①为List集合类型属性赋值在Clazz类中添加以下代码:
private Liststudents;
public ListgetStudents() {return students;
}
public void setStudents(Liststudents) {this.students = students;
}
配置bean:
p77 为map集合类型赋值 ②为Map集合类型属性赋值若为Set集合类型属性赋值,只需要将其中的list标签改为set标签即可
创建教师类Teacher:
@Data
public class Teacher implements Serializable {private Integer teacherId;
private String teacherName;
}
在Student类中添加以下代码:
private MapteacherMap;
配置bean:
③引用集合类型的bean10010 10086 抽烟 喝酒 烫头
p78 依赖注入之p命名空间使用util:list、util:map标签必须引入相应的命名空间,可以通过idea的提示功能选择
这个基本上不用,简单了解
引入p命名空间后,可以通过以下方式为bean的各个属性赋值
p79 spring管理数据源和引入外部文件
①加入依赖mysql mysql-connector-java 8.0.16 com.alibaba druid 1.0.31
②创建外部属性文件jdbc.properties
jdbc.user=root
jdbc.password=atguigu
jdbc.url=jdbc:mysql://localhost:3306/ssm?serverTimezone=UTC
jdbc.driver=com.mysql.cj.jdbc.Driver
③引入属性文件
④配置bean
⑤测试@Test
public void testDataSource() throws SQLException {ApplicationContext ac = new ClassPathXmlApplicationContext("spring-datasource.xml");
DataSource dataSource = ac.getBean(DataSource.class);
Connection connection = dataSource.getConnection();
System.out.println(connection);
}
p80 bean的作用域
①概念在Spring中可以通过配置bean标签的scope属性来指定bean的作用域范围,各取值含义参加下表:
取值 | 含义 | 创建对象的时机 |
---|---|---|
singleton(默认) | 在IOC容器中,这个bean的对象始终为单实例 | IOC容器初始化时 |
prototype | 这个bean在IOC容器中有多个实例 | 获取bean时 |
如果是在WebApplicationContext环境下还会有另外两个作用域(但不常用):
取值 | 含义 |
---|---|
request | 在一个请求范围内有效 |
session | 在一个会话范围内有效 |
@Data
public class User implements Serializable {private Integer id;
private String username;
private String password;
private Integer age;
}
③配置bean
④测试@Test
public void testBeanScope(){ApplicationContext ac = new ClassPathXmlApplicationContext("spring-scope.xml");
User user1 = ac.getBean(User.class);
User user2 = ac.getBean(User.class);
System.out.println(user1==user2);
}
p81-82 bean的生命周期生命周期了解即可,这里复制笔记
①具体的生命周期过程public class User {private Integer id;
private String username;
private String password;
private Integer age;
public User() {System.out.println("生命周期:1、创建对象");
}
public User(Integer id, String username, String password, Integer age) {this.id = id;
this.username = username;
this.password = password;
this.age = age;
}
public Integer getId() {return id;
}
public void setId(Integer id) {System.out.println("生命周期:2、依赖注入");
this.id = id;
}
public String getUsername() {return username;
}
public void setUsername(String username) {this.username = username;
}
public String getPassword() {return password;
}
public void setPassword(String password) {this.password = password;
}
public Integer getAge() {return age;
}
public void setAge(Integer age) {this.age = age;
}
public void initMethod(){System.out.println("生命周期:3、初始化");
}
public void destroyMethod(){System.out.println("生命周期:5、销毁");
}
@Override
public String toString() {return "User{" +
"id=" + id +
", username='" + username + '\'' +
", password='" + password + '\'' +
", age=" + age +
'}';
}
}
③配置bean注意其中的initMethod()和destroyMethod(),可以通过配置bean指定为初始化和销毁的方法
④测试@Test
public void testLife(){ClassPathXmlApplicationContext ac = newClassPathXmlApplicationContext("spring-lifecycle.xml");
User bean = ac.getBean(User.class);
System.out.println("生命周期:4、通过IOC容器获取bean并使用");
ac.close();
}
⑤bean的后置处理器bean的后置处理器会在生命周期的初始化前后添加额外的操作,需要实现BeanPostProcessor接口,
且配置到IOC容器中,需要注意的是,bean后置处理器不是单独针对某一个bean生效,而是针对IOC容器中所有bean都会执行
创建bean的后置处理器:
package com.atguigu.spring.process;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanPostProcessor;
public class MyBeanProcessor implements BeanPostProcessor {@Override
public Object postProcessBeforeInitialization(Object bean, String beanName)
throws BeansException {System.out.println("☆☆☆" + beanName + " = " + bean);
return bean;
}
@Override
public Object postProcessAfterInitialization(Object bean, String beanName)
throws BeansException {System.out.println("★★★" + beanName + " = " + bean);
return bean;
}
}
在IOC容器中配置后置处理器:
p83 FactoryBean ①简介
FactoryBean是Spring提供的一种整合第三方框架的常用机制。和普通的bean不同,配置一个FactoryBean类型的bean,在获取bean的时候得到的并不是class属性中配置的这个类的对象,而是getObject()方法的返回值。通过这种机制,Spring可以帮我们把复杂组件创建的详细过程和繁琐细节都屏蔽起来,只把最简洁的使用界面展示给我们。
将来我们整合Mybatis时,Spring就是通过FactoryBean机制来帮我们创建SqlSessionFactory对象的。
②创建类UserFactoryBeanpublic class UserFactoryBean implements FactoryBean{@Override
public User getObject() throws Exception {return new User();
}
@Override
public Class>getObjectType() {return User.class;
}
}
③配置bean
④测试@Test
public void testUserFactoryBean(){//获取IOC容器
ApplicationContext ac = new ClassPathXmlApplicationContext("spring-factorybean.xml");
User user = (User) ac.getBean("user");
System.out.println(user);
}
p84-86 基于xml的自动装配自动装配的意思是:
本来一个UserCoontroller中有个对象是UserService
本来配置bean的时候需要用来配置这个对象,现在添加一个byName或者byType就可以自动装配了
bytype:controller中有一个UserService,然后配置文件(配置bean的xml)中有一个类型是UserService,就会自动配置这个
①场景模拟自动装配:
根据指定的策略,在IOC容器中匹配某一个bean,自动为指定的bean中所依赖的类类型或接口类型属性赋值
创建类UserController
public class UserController {private UserService userService;
public void setUserService(UserService userService) {this.userService = userService;
}
public void saveUser(){userService.saveUser();
}
}
创建接口UserService
public interface UserService {void saveUser();
}
创建类UserServiceImpl实现接口UserService
public class UserServiceImpl implements UserService {private UserDao userDao;
public void setUserDao(UserDao userDao) {this.userDao = userDao;
}
@Override
public void saveUser() {userDao.saveUser();
}
}
创建接口UserDao
public interface UserDao {void saveUser();
}
创建类UserDaoImpl实现接口UserDao
public class UserDaoImpl implements UserDao {@Override
public void saveUser() {System.out.println("保存成功");
}
}
②配置bean使用bean标签的autowire属性设置自动装配效果
自动装配方式:byType
byType:根据类型匹配IOC容器中的某个兼容类型的bean,为属性自动赋值
若在IOC中,没有任何一个兼容类型的bean能够为属性赋值,则该属性不装配,即值为默认值
null
若在IOC中,有多个兼容类型的bean能够为属性赋值,则抛出异常
NoUniqueBeanDefinitionException
自动装配方式:byName
byName:将自动装配的属性的属性名,作为bean的id在IOC容器中匹配相对应的bean进行赋值
③测试@Test
public void testAutoWireByXML(){ApplicationContext ac = new ClassPathXmlApplicationContext("autowire-xml.xml");
UserController userController = ac.getBean(UserController.class);
userController.saveUser();
}
p87-89 基于注解管理的注解和扫描介绍:在类上添加一个注解,然后在spring的配置文件中扫描到这个类,然后spring就会自动执行操作(不需要自己写bean了)
③新建Maven Moduleorg.springframework spring-context 5.3.1 junit junit 4.12 test
④创建Spring配置文件
⑤标识组件的常用注解@Component:将类标识为普通组件
@Controller:将类标识为控制层组件
@Service:将类标识为业务层组件
@Repository:将类标识为持久层组件
问:以上四个注解有什么关系和区别?
@Controller、@Service、@Repository这三个注解只是在@Component注解的基础上起了三个新的名字。
对于Spring使用IOC容器管理这些组件来说没有区别。所以@Controller、@Service、@Repository这三个注解只是给开发人员看的,让我们能够便于分辨组件的作用。
注意:虽然它们本质上一样,但是为了代码的可读性,为了程序结构严谨我们肯定不能随便胡乱标记。
⑥创建组件创建控制层组件
@Controller
public class UserController {}
创建接口UserService
public interface UserService {}
创建业务层组件UserServiceImpl
@Service
public class UserServiceImpl implements UserService {}
创建接口UserDao
public interface UserDao {}
创建持久层组件UserDaoImpl
@Repository
public class UserDaoImpl implements UserDao {}
⑦扫描组件情况一:最基本的扫描方式
记录4: beans的命名空间中,在使用扫描包时,要引入的命名空间为
xmlns:context=“http://www.springframework.org/schema/context”
和
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.2.xsd
情况二:指定要排除的组件
情况三:仅扫描指定组件
⑧测试@Test
public void testAutowireByAnnotation(){ApplicationContext ac = new
ClassPathXmlApplicationContext("applicationContext.xml");
UserController userController = ac.getBean(UserController.class);
System.out.println(userController);
UserService userService = ac.getBean(UserService.class);
System.out.println(userService);
UserDao userDao = ac.getBean(UserDao.class);
System.out.println(userDao);
}
p90 基于注解管理bean之bean的id
⑨组件所对应的bean的id在我们使用XML方式管理bean的时候,每个bean都有一个唯一标识,便于在其他地方引用。现在使用
注解后,每个组件仍然应该有一个唯一标识。
p91-93 基于注解的自动装配默认情况
类名首字母小写就是bean的id。例如:UserController类对应的bean的id就是userController。
自定义bean的id
可通过标识组件的注解的value属性设置自定义的bean的id
@Service(“userService”)//默认为userServiceImpl public class UserServiceImpl implements
UserService {}
@Autowired自动装配的作用
原来Controller中调用Service:
public class UserController {private UserService userService;
public void setUserService(UserService userService) {this.userService = userService;
}
public void saveUser(){userService.saveUser();
}
}
现在:
public class UserController {@Autowired
private UserService userService;
}
①场景模拟②@Autowired注解参考基于xml的自动装配
在UserController中声明UserService对象
在UserServiceImpl中声明UserDao对象
在成员变量上直接标记@Autowired注解即可完成自动装配,不需要提供setXxx()方法。以后我们在项目中的正式用法就是这样。
@Controller
public class UserController {@Autowired
private UserService userService;
public void saveUser(){userService.saveUser();
}
}
public interface UserService {void saveUser();
}
@Service
public class UserServiceImpl implements UserService {@Autowired
private UserDao userDao;
@Override
public void saveUser() {userDao.saveUser();
}
}
public interface UserDao {void saveUser();
}
@Repository
public class UserDaoImpl implements UserDao {@Override
public void saveUser() {System.out.println("保存成功");
}
}
③@Autowired注解其他细节@Autowired注解可以标记在构造器和set方法上
@Controller
public class UserController {private UserService userService;
@Autowired
public UserController(UserService userService){this.userService = userService;
}
public void saveUser(){userService.saveUser();
}
}
@Controller
public class UserController {private UserService userService;
@Autowired
public void setUserService(UserService userService){this.userService = userService;
}
public void saveUser(){userService.saveUser();
}
}
④@Autowired工作流程@Controller
public class UserController {@Autowired
@Qualifier("userServiceImpl")
private UserService userService;
public void saveUser(){userService.saveUser();
}
}
@Autowired中有属性required,默认值为true,因此在自动装配无法找到相应的bean时,会装配失败
可以将属性required的值设置为true,则表示能装就装,装不上就不装,此时自动装配的属性为默认值
但是实际开发时,基本上所有需要装配组件的地方都是必须装配的,用不上这个属性。
你是否还在寻找稳定的海外服务器提供商?创新互联www.cdcxhl.cn海外机房具备T级流量清洗系统配攻击溯源,准确流量调度确保服务器高可用性,企业级服务器适合批量采购,新人活动首月15元起,快前往官网查看详情吧