官网:https://docs.spring.io/spring-framework/docs/current/reference/html/overview.html#overview
GitHub:https://github.com/spring-projects/spring-framework/releases
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-webmvcartifactId>
<version>5.3.13version>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-jdbcartifactId>
<version>5.3.13version>
dependency>
总结一句话:Spring就是一个轻量级的控制反转(IOC)和面向切面编程(AOP)的框架!
Spring Boot 构建一切
一个快速开发的脚手架,基于SpringBoot可以快速开发单个微服务。约定大于配置。
Spring Cloud 协调一切
基于SpringBoot实现的。
Spring Cloud Data Flow 连接一切
现在大多数公司都在使用SpringBoot进行快速开发,学习SpringBoot的前提,需要完全掌握Spring和SpringMVC!承上启下的作用。
弊端:发展了太久之后,违背了原来的理念,配置十分繁琐。
UserDao接口
UserDaoImpl实现类
UserService业务接口
UserServiceImpl业务实现类
在我们之前的业务中,用户的需求可能会影响我们原来的代码,我们需要根据用户的需求去修改源代码。如果程序代码量十分大,修改一次的成本代价十分昂贵。
我们使用一个set接口实现,已经发生了革命性的变化!
private UserDao userDao;
//利用set进行动态实现值的注入
public void setUserDao(UserDao userDao) {
this.userDao = userDao;
}
这种思想,从本质上解决了问题,程序员不再去管理对象的创建了。系统的耦合性大大降低,可以更加专注于业务的实现。这是IOC的原型!
控制反转IOC,是一种设计思想,DI(依赖注入)是实现IOC的一种方法,也有人认为IDI只是IOC的另一种说法。没有Ioc的程序中,我们使用面向对象编程,对象的创建与对象间的依赖关系完全硬编码在程序中,对象的创建由程序自己控制,控制反转后将对象的创建转移给第三方,个人认为所谓控制反转就是:获得依赖对象的方式反转了。
采用Xml方式配置Bean的时候,Bean的定义信息是和实现分离的,而采用注解的方式可以把两者合为一体,Bean的定义信息直接以注解的形式定义在实现类中,从而达到了零配置的目的。
控制反转是一种通过描述(XML或注解)并提供第三方去生产或获取特定对象的方式。在Spring中实现控制反转的是Ioc容器,其实现方法是依赖注入。
实体类:User.java
其中的set方法是spring的核心。
package com.zsf.pojo;
public class Hello {
private String str;
public String getStr() {
return str;
}
public void setStr(String str) {
this.str = str;
}
@Override
public String toString() {
return "Hello{" +
"str='" + str + '\'' +
'}';
}
}
配置文件: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">
<bean id="hello" class="com.zsf.pojo.Hello">
<property name="str" value="Spring"/>
bean>
beans>
测试:
public class Mytest {
public static void main(String[] args) {
//获取Spring的上下文对象
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
//我们的对象现在都在Spring中管理了,我们要使用,直接去里面取出来就可以了
Hello hello = (Hello) context.getBean("hello");
System.out.println(hello.toString());
}
}
对于2中的IOC理论,用spring来写
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">
<bean id="mysqlImpl" class="com.zsf.dao.UserDaoMysqlImpl"/>
<bean id="oracleImpl" class="com.zsf.dao.UserDaoOracleImpl"/>
<bean id="UserServiceImpl" class="com.zsf.service.UserServiceImpl">
<property name="UserDao" ref="mysqlImpl"/>
bean>
beans>
测试:
public class Mytest {
public static void main(String[] args) {
//获取ApplicationContext:拿到spring的容器
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
//容器在手,需要什么,就直接get
UserServiceImpl userServiceImpl = (UserServiceImpl) context.getBean("UserServiceImpl");
userServiceImpl.getUser();
}
}
到了现在,我们就不用去程序中改动了,要实现不同的操作,只需要在xml配置文件中进行修改。
这个过程就叫控制反转!
使用无参构造创建对象,默认!
public class User {
private String name;
//只要new这个user,这个方法就会被调用
public User(){
System.out.println("user的无参构造");
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public void show(){
System.out.println("name="+name);
}
}
<bean id="user" class="com.zsf.pojo.User">
<property name="name" value="beisheng"/>
bean>
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
User user = (User) context.getBean("user");
user.show();
假设要使用有参构建创建对象。
下标赋值
<bean id="user" class="com.zsf.pojo.User">
<constructor-arg index="0" value="SpringStudy"/>
bean>
通过类型创建
<bean id="user" class="com.zsf.pojo.User">
<constructor-arg type="java.lang.String" value="beisheng"/>
bean>
参数名
<bean id="user" class="com.zsf.pojo.User">
<constructor-arg name="name" value="beisheng"/>
bean>
总结:Spring容器就类似于婚介网站,xml的所有bean,在一注册进来的时候,就已经被实例化了,要用就直接get。
在配置文件加载的时候,容器中管理的对象就已经初始化了。
<alias name="user" alias="user的别名"/>
<bean id="userT" class="com.zsf.pojo.UserT" name="user2,u2">
<property name="name" value="beisheng"/>
bean>
一般用于团队开发,它可以将多个配置文件,导入合并为一个
假设,现在项目中有多个人开发,不同的人负责不同的类开发,不同的类需要注册在不同的bean中,我们可以利用import将所有人的beans.xml合并为一个总的。如果有重名,内容也相同会自动合并。
import resource="beans1.xml"/>
<import resource="beans2.xml"/>
<import resource="beans3.xml"/>
【环境搭建】
1、复杂类型
package com.zsf.pojo;
import java.util.*;
public class Student {
private String name;//通过value赋值
private Address address;//通过ref赋值
private String[] books;
private List<String> hobbies;
private Map<String,String> card;
private Set<String> games;
private String wife;
private Properties info;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Address getAddress() {
return address;
}
public void setAddress(Address address) {
this.address = address;
}
public String[] getBooks() {
return books;
}
public void setBooks(String[] books) {
this.books = books;
}
public List<String> getHobbies() {
return hobbies;
}
public void setHobbies(List<String> hobbies) {
this.hobbies = hobbies;
}
public Map<String, String> getCard() {
return card;
}
public void setCard(Map<String, String> card) {
this.card = card;
}
public Set<String> getGames() {
return games;
}
public void setGames(Set<String> games) {
this.games = games;
}
public String getWife() {
return wife;
}
public void setWife(String wife) {
this.wife = wife;
}
public Properties getInfo() {
return info;
}
public void setInfo(Properties info) {
this.info = info;
}
@Override
public String toString() {
return "Student{" +
"name='" + name + '\'' +
", address=" + address.toString() +
", books=" + Arrays.toString(books) +
", hobbies=" + hobbies +
", card=" + card +
", games=" + games +
", wife='" + wife + '\'' +
", info=" + info +
'}';
}
}
package com.zsf.pojo;
public class Address {
private String address;
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
@Override
public String toString() {
return "Address{" +
"address='" + address + '\'' +
'}';
}
}
<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">
<bean id="address" class="com.zsf.pojo.Address">
<property name="address" value="武汉">property>
bean>
<bean id="student" class="com.zsf.pojo.Student">
<property name="name" value="beisheng"/>
<property name="address" ref="address"/>
<property name="books">
<array>
<value>红楼梦value>
<value>西游记value>
<value>水浒传value>
array>
property>
<property name="hobbies">
<list>
<value>听歌value>
<value>看电影value>
list>
property>
<property name="card">
<map>
<entry key="身份证" value="123456789">entry>
<entry key="银行卡" value="111111111">entry>
map>
property>
<property name="games">
<set>
<value>LOLvalue>
<value>COCvalue>
set>
property>
<property name="wife">
<null>null>
property>
<property name="info">
<props>
<prop key="学号">001prop>
<prop key="性别">男prop>
<prop key="姓名">小米prop>
props>
property>
bean>
beans>
public class Mytest {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("beans1.xml");
Student stu = (Student) context.getBean("student");
System.out.println(stu.toString());
}
}
我们可以使用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"
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="user" class="com.zsf.pojo.User" p:name="beisheng" p:age="18">
bean>
<bean id="user2" class="com.zsf.pojo.User" c:age="17" c:name="bbb">
bean>
beans>
@Test
public void test2(){
ApplicationContext context = new ClassPathXmlApplicationContext("userbeans.xml");
User user1 = context.getBean("user", User.class);
User user2 = context.getBean("user2", User.class);
System.out.println(user1);
System.out.println(user2);
}
注意点:p命名和c命名空间不能直接使用,需要导入xml约束!!
xmlns:p="http://www.springframework.org/schema/p"
xmlns:c="http://www.springframework.org/schema/c"
Spring默认机制
可以在bean后面加上:
<bean id="accountService" class="com.something.DefaultAccountService" scope="singleton"/>
每次从容器中get的时候,都会产生一个新对象!
特别浪费资源。
<bean id="accountService" class="com.something.DefaultAccountService" scope="prototype"/>
request、session、application,这些个只能在web开发中使用到!
在Spring中有三种装配的方式
环境搭建:一个人有两个宠物。
<bean id="cat" class="com.zsf.pojo.Cat"/>
<bean id="dog" class="com.zsf.pojo.Dog"/>
<bean id="people" class="com.zsf.pojo.People">
<property name="name" value="beisheng"/>
<property name="cat" ref="cat"/>
<property name="dog" ref="dog"/>
bean>
只需要保证id值与set方法值相同就能注入
<bean id="cat" class="com.zsf.pojo.Cat"/>
<bean id="dog" class="com.zsf.pojo.Dog"/>
<bean id="dog2" class="com.zsf.pojo.Dog"/>
<bean id="people" class="com.zsf.pojo.People" autowire="byName">
<property name="name" value="beisheng"/>
bean>
必须保证类型全局唯一,否则会报错。
还能省略id
<bean id="cat" class="com.zsf.pojo.Cat"/>
<bean id="dog2" class="com.zsf.pojo.Dog"/>
<bean id="people" class="com.zsf.pojo.People" autowire="byType">
<property name="name" value="beisheng"/>
bean>
小结:
jdk1.5支持的注解。spring2.5就支持注解了!
要使用注解须知:
<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!
相当于byname和bytype。
如果@Autowired自动装配的环境比较复杂,自动装配无法通过一个注解【@Autowired】完成的时候,我们可以使用@qualifier(value=“xxx”)去配置@Autowired的使用,指定一个唯一的bean对象注入。
当xml里面有多个bean指向同一个实体类的时候,(并且id值与实体名不一样)此时仅仅用一个Autowired就会无法识别。而现在又想要注入多个bean的话,就还要引入@Qualifier来指定value值为xml里面bean的id值。
@Autowired
@Qualifier(value = "dog222")
private Dog dog;
<bean id="dog222" class="com.zsf.pojo.Dog"/>
<bean id="dog111" class="com.zsf.pojo.Dog"/>
而@Resource注解:先通过名字找,找不到再通过类型找,都找不到就报错(这个是java的原生,与spring无关)
小结:
@Resource和@Autowired的区别:
在spring4之后,要使用注解开发,必须要保证aop包的导入
使用注解需要导入context约束,增加注解的支持!
bean
属性如何注入
//等价于
//Component 组件 要是复杂还是建议用配置文件
@Component
public class User {
//相当于
@Value("beisheng")
public String name;
}
衍生的注解
@Component又几个衍生注解,我们在web开发中,会按照mvc三层架构分层!
dao【@Repository】
service【@Service】
controller【@Controller】
这四个注解的功能都是一样的,都是代表将某个类注册到Spring中,装配Bean
自动装配
作用域
@Scope:指定单例模式还是原型模式
@Component
@Scope("singleton")
public class User {
//相当于
@Value("beisheng")
public String name;
}
小结
xml与注解:
最佳实践:
xml用来管理bean;
注解只负责完成属性的注入;
我们在使用的过程中,只需要注意一个问题:必须让注解生效,就需要开启注解的支持
<context:component-scan base-package="com.zsf"/>
<context:annotation-config/>
我们现在要完全不使用Spring的xml配置,全权交给Java来做。
JavaConfig是Spring的一个子项目,在Spring4之后,它成为了一个核心功能。
实体类User.java:
//这里这个注解的意思,就是说明这个类被Spring接管了,注册到了容器中
@Component
public class User {
private String name;
public String getName() {
return name;
}
@Value("beisheng")//注入属性值
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "User{" +
"name='" + name + '\'' +
'}';
}
}
配置文件UserConfig.java
//这个也会被Spring容器托管,注册到容器中,因为它本来就是一个@Component,
// @Configuration代表这是一个配置类,就和我们之前看的beans.xml一样
@Configuration
@ComponentScan("com.zsf.pojo")
@Import(UserConfig2.class)
public class UserConfig {
//注册一个bean,就相当于我们之前写的一个bean标签
//这个方法的名字,就相当于bean标签中的id属性
//这个方法的返回值,就相当于bean标签中的class属性
@Bean
public User getUser(){
return new User();//就是返回要注入到bean的对象!
}
}
配置文件2UserConfig2.java
@Configuration
public class UserConfig2 {
}
测试类Mytest:
public class Mytest {
@Test
public void test(){
//如果完全使用了配置类方式去做,我们就只能通过 ApplicationContext 上下文来获取容器,通过配置类的class对象加载
ApplicationContext context = new AnnotationConfigApplicationContext(UserConfig.class);
User getUser = context.getBean("user", User.class);
System.out.println(getUser.getName());
}
}
这种纯java的配置方式,在SpringBoot中随处可见。
为什么要学习代理模式?因为这就是SpringAOP的底层!【SpringAOP和SpringMVC】
代理模式的分类:
角色分析:
代码步骤:
接口
//租房
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 Proxy() {
}
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();
}
}
代理模式的好处:
缺点:
加深理解
写一个增删改查,并加上日志功能。
接口:
public interface UserService {
public void add();
public void delete();
public void update();
public void query();
}
实现类:
public class UserServiceImpl implements UserService{
public void add() {
System.out.println("增加了一个用户");
}
public void delete() {
System.out.println("删除了一个用户");
}
public void update() {
System.out.println("修改了一个用户");
}
public void query() {
System.out.println("查询了一个用户");
}
}
代理:
public class UserServiceProxy implements UserService{
private UserServiceImpl userService;
public void setUserService(UserServiceImpl userService) {
this.userService = userService;
}
public void add() {
log("add");
userService.add();
}
public void delete() {
log("delete");
userService.delete();
}
public void update() {
log("update");
userService.update();
}
public void query() {
log("query");
userService.query();
}
//日志方法
public void log(String msg){
System.out.println("使用了"+msg+"方法");
}
}
访问:
public class Client {
public static void main(String[] args) {
UserServiceImpl userService = new UserServiceImpl();
// userService.add();
UserServiceProxy proxy = new UserServiceProxy();
proxy.setUserService(userService);
proxy.add();
}
}
需要了解两个类:Proxy:代理,InvocationHandler:调用处理程序
<dependencies>
<dependency>
<groupId>org.aspectjgroupId>
<artifactId>aspectjweaverartifactId>
<version>1.9.4version>
dependency>
dependencies>
方式一:使用Spring的API接口【主要是SpringAPI接口实现】
public interface UserService {
public void add();
public void delete();
public void update();
public void query();
}
public class Log implements MethodBeforeAdvice {
//method:要执行的目标对象的方法
//objects:参数
//target:目标对象
public void before(Method method, Object[] args, Object target) throws Throwable {
System.out.println(target.getClass().getName()+"的"+method.getName()+"被实现了");
}
}
public class AfterLog implements AfterReturningAdvice {
//returnValue:返回值
public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
System.out.println("执行了" +method.getName()+"方法,返回结果为:"+returnValue);
}
}
<bean id="userService" class="com.zsf.service.UserServiceImpl"/>
<bean id="log" class="com.zsf.log.Log"/>
<bean id="afterLog" class="com.zsf.log.AfterLog"/>
<aop:config>
<aop:pointcut id="pointcut" expression="execution(* com.zsf.service.UserServiceImpl.*(..))">aop:pointcut>
<aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
<aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
aop:config>
public class Mytest {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
//动态代理的是接口:注意点
UserService userService = (UserService) context.getBean("userService");
userService.add();
}
}
方式二:自定义来实现AOP【主要是切面定义】
public class DiyPointCut {
public void before(){
System.out.println("======方法执行前======");
}
public void after(){
System.out.println("======方法执行后======");
}
}
<bean id="diy" class="com.zsf.diy.DiyPointCut"/>
<aop:config>
<aop:aspect ref="diy">
<aop:pointcut id="point" expression="execution(* com.zsf.service.UserServiceImpl.*(..))"/>
<aop:before method="before" pointcut-ref="point"/>
<aop:after method="after" pointcut-ref="point"/>
aop:aspect>
aop:config>
方式三:使用注解实现
//方式三:使用注解方式实现AOP
@Aspect//标注这个类是一个切面
public class AnnotationPointCut {
@Before("execution(* com.zsf.service.UserServiceImpl.*(..))")
public void before(){
System.out.println("======方法执行前======");
}
@After("execution(* com.zsf.service.UserServiceImpl.*(..))")
public void after(){
System.out.println("======方法执行后======");
}
//在环绕编程中,我们可以给定一个参数,代表我们要获取处理切入的点
@Around("execution(* com.zsf.service.UserServiceImpl.*(..))")
public void around(ProceedingJoinPoint jp) throws Throwable {
System.out.println("环绕前");
Signature signature = jp.getSignature();//获得签名
System.out.println("signature:"+signature);
//执行方法
Object proceed = jp.proceed();
System.out.println("环绕后");
System.out.println(proceed);
}
}
<bean id="annotationPointCut" class="com.zsf.diy.AnnotationPointCut"/>
<aop:aspectj-autoproxy/>
步骤:
导入相关jar包
<dependencies>
<dependency>
<groupId>junitgroupId>
<artifactId>junitartifactId>
<version>4.12version>
<scope>testscope>
dependency>
<dependency>
<groupId>mysqlgroupId>
<artifactId>mysql-connector-javaartifactId>
<version>5.1.47version>
dependency>
<dependency>
<groupId>org.mybatisgroupId>
<artifactId>mybatisartifactId>
<version>3.5.2version>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-webmvcartifactId>
<version>5.3.13version>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-jdbcartifactId>
<version>5.1.9.RELEASEversion>
dependency>
<dependency>
<groupId>org.aspectjgroupId>
<artifactId>aspectjweaverartifactId>
<version>1.9.4version>
dependency>
<dependency>
<groupId>org.mybatisgroupId>
<artifactId>mybatis-springartifactId>
<version>2.0.2version>
dependency>
<dependency>
<groupId>org.projectlombokgroupId>
<artifactId>lombokartifactId>
<version>1.16.18version>
dependency>
dependencies>
资源过滤问题:
<build>
<resources>
<resource>
<directory>src/main/resourcesdirectory>
<includes>
<include>**/*.propertiesinclude>
<include>**/*.xmlinclude>
includes>
<filtering>falsefiltering>
resource>
<resource>
<directory>src/main/javadirectory>
<includes>
<include>**/*.propertiesinclude>
<include>**/*.xmlinclude>
includes>
<filtering>falsefiltering>
resource>
resources>
build>
编写配置文件
测试
编写实体类
@Data
public class User {
private int id;
private String name;
private String pwd;
}
编写核心配置文件
DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<typeAliases>
<package name="com.zsf.pojo"/>
typeAliases>
<environments default="development">
<environment id="development">
<transactionManager type="JDBC"/>
<dataSource type="POOLED">
<property name="driver" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=UTF-8"/>
<property name="username" value="root"/>
<property name="password" value="root"/>
dataSource>
environment>
environments>
<mappers>
<mapper class="com.zsf.mapper.UserMapper"/>
mappers>
configuration>
编写接口
public interface UserMapper {
public List<User> selectUser();
}
编写Mapper.xml
DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.zsf.mapper.UserMapper">
<select id="selectUser" resultType="User">
select * from mybatis.user;
select>
mapper>
5.测试
public class Mytest {
@Test
public void test() throws IOException {
String resources = "mybatis-config.xml";
InputStream in = Resources.getResourceAsStream(resources);
SqlSessionFactory sessionFactory = new SqlSessionFactoryBuilder().build(in);
SqlSession sqlSession = sessionFactory.openSession(true);
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
List<User> userList = mapper.selectUser();
for (User user : userList) {
System.out.println(user);
}
}
}
原来放在service的业务层做的,现在spring整合之后就可以直接在实现类里面去用了。
方法一:
编写数据源配置
<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
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=UTF-8"/>
<property name="username" value="root"/>
<property name="password" value="root"/>
bean>
beans>
sqlSessionFactory(核心)
注入数据源(上面配置的),绑定Mybatis的配置文件
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="configLocation" value="classpath:Mybatis-config.xml"/>
<property name="mapperLocations" value="classpath:com/zsf/mapper/*.xml"/>
bean>
sqlSessionTemplate(核心)
因为最终会用sqlSessionTemplate来做增删改查用来替代原来的sqlSession。
在这里,通过sqlSessionTemplate来生成sqlSession;通过唯一的构造方法把sqlSessionFactory拿进来。
<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
<constructor-arg index="0" ref="sqlSessionFactory"/>
bean>
<bean id="userMapper" class="com.zsf.mapper.UserMapperImpl">
<property name="sqlSession" ref="sqlSession"/>
bean>
需要给接口加实现类【】
写一个实现类,把SqlSession私有了,再通过SqlSessionTemplate注入进去。
public class UserMapperImpl implements UserMapper{
//我们的所有操作,都使用sqlSession来执行。在原来,现在都使用SqlSessionTemplate;
private SqlSessionTemplate sqlSession;
public void setSqlSession(SqlSessionTemplate sqlSession) {
this.sqlSession = sqlSession;
}
public List<User> selectUser() {
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
return mapper.selectUser();
}
}
将自己写的实现类,注入到spring中测试使用(用户调spring使用)
public class Mytest {
@Test
public void test() throws IOException {
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
UserMapper userMapper = context.getBean("userMapper", UserMapper.class);
for (User user : userMapper.selectUser()) {
System.out.println(user);
}
}
}
方法二:
不用注入SqlSession,直接继承一个类:SqlSessionDaoSupport。SqlSessionDaoSupport
是一个抽象的支持类,用来为你提供 SqlSession
。调用 getSqlSession()
方法你会得到一个 SqlSessionTemplate
,之后可以用于执行 SQL 方法。
其实还是方式一,只不过官方帮我们写好了然后我们直接继承就可以用。
1、回顾事务
事务ACID原则:
原子性
一致性
隔离性
持久性
2、spring中的事务管理
一个使用 MyBatis-Spring 的其中一个主要原因是它允许 MyBatis 参与到 Spring 的事务管理中。而不是给 MyBatis 创建一个新的专用事务管理器,MyBatis-Spring 借助了 Spring 中的 DataSourceTransactionManager
来实现事务管理。
一旦配置好了 Spring 的事务管理器,你就可以在 Spring 中按你平时的方式来配置事务。并且支持 @Transactional
注解和 AOP 风格的配置。在事务处理期间,一个单独的 SqlSession
对象将会被创建和使用。当事务完成时,这个 session 会以合适的方式提交或回滚。
事务配置好了以后,MyBatis-Spring 将会透明地管理事务。这样在你的 DAO 类中就不需要额外的代码了。
要开启 Spring 的事务处理功能,在 Spring 的配置文件中创建一个 DataSourceTransactionManager
对象
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
bean>
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="add" propagation="REQUIRED"/>
<tx:method name="delete" propagation="REQUIRED"/>
<tx:method name="update" propagation="REQUIRED"/>
<tx:method name="*" propagation="REQUIRED"/>
tx:attributes>
tx:advice>
<aop:config>
<aop:pointcut id="txPointCut" expression="execution(* com.zsf.mapper.*.*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="txPointCut"/>
aop:config>
思考:为什么需要事务?