个人理解:spring两个重点ioc和aop,ioc减少耦合性,解耦,使代码更加灵活,对象的创建是由程序自己控制的.控制反转就是将对象的创建转移给了第三方。aop就是在不改变原有代码的情况下给添加操作。可以将日志记录、性能统计、安全控制、事务处理、异常处理等代码从业务逻辑代码中分离出来,放到一个非业务逻辑的方法中,进而改变这些行为的同时不影响业务逻辑代码;spring理念:使现有的技术更加容易使用,本身是一个大杂烩,整合了现有的技术框架!
Spring简介
官网:https://spring.io/projects/spring-framework#overview
Github: https://github.com/spring-projects/spring-framework
maven spring:
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-webmvcartifactId>
<version>5.3.23version>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-jdbcartifactId>
<version>5.3.23version>
dependency>
总结:Spring就是一个轻量级控制反转(IOC)和面向切面编程的框架(AOP)!
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-Y7xhFmlF-1669789097802)(C:\Users\MU\Desktop\笔记\spring组成.jpg)]
在我们之前的业务中,用户的需求可能会影响我们原来的代码,我们需要根据用户的需求去修改源代码!如果程序代码量十分大,修改一次的成本代价十分昂贵!
我们使用一个Set接口实现,已经发生了革命性变化! 减少上下层的关联,减弱耦合性,使代码更加灵活
//private UserDao userDao = new UserDaoImpl(); //调用dao层
private UserDao userDao;
//利用set进行动态实现值的注入!不需要像以前一样手动修改写死的新建对象
public void setUserDao(UserDao userDao) {
this.userDao = userDao;
}
public void getUser(){
userDao.getUser();
}
public class MyTest {
public static void main(String[] args) {
//用户实际调用的是业务层,dao层他们不需要接触
UserServiceImpl userService = new UserServiceImpl();
//((UserServiceImpl) userService).setUserDao(new UserDaoImpl());
userService.setUserDao(new UserDaoImpl());
userService.getUser();
}
}
控制反转(inversion of control), 是一种设计思想,DI(dependency injection依赖注入)是IOC的一种方法.未使用IOC的程序中,我们使用面向对象编程,对象的创建和对象之间的依赖关系完全硬编码在程序中,对象的创建是由程序自己控制的.控制反转就是将对象的创建转移给了第三方.
采用XML方式配置Bean的时候,Bean的定义信息是和实现分离的,而采用注解的方式可以把两者合为一体,Bean的定义信息直接以注解的形式定义在实现类中,从而达到了零配置的目的。
控制反转是一种通过描述(XML或注解)并通过第三方去生产或获取特定对象的方式。在Spring中实现控制反转的是IoC容器,其实现方法是依赖注入(Dependency Injection,DI)。
<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.pojo.Hello">
<property name="str" value="Spring"/>
bean>
beans>
只需要通过下面的beans.xml文件中 ref="***"里面的对象,就能够切换功能输出,这样我们写的代码就可以不用去更改了,并且让用户只需要更改xml中相对应的值就可以完成所需业务需求,达到了IOC控制反转的思想:交给用户
<bean id="mysql" class="com.dao.UserMysqlImpl"/>
<bean id="oracle" class="com.dao.UserOracleImpl"/>
<bean id="UserServiceImpl" class="com.service.UserServiceImpl">
<property name="userDao" ref="mysql"/>
bean>
@Test
//获取AppLicationContext; 拿到spring容器
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
//从容器中取出数据get
UserServiceImpl userService = (UserServiceImpl)context.getBean("UserServiceImpl");
userService.getUser();
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-D8mheukQ-1669789097803)(C:\Users\MU\Desktop\笔记\springbean的简单理解.jpg)]
使用Spring,我们可以彻底不用再去程序中改动了,要实现不同的操作,只需要在xml配置文件中进行修改所谓的IOC。
一句话搞定:对象由Spring 来创建,管理,装配!
bean默认使用无参构造方法创建对象!若类无无参构造方法,使用默认创建时会报错
使用有参构造方法
下标赋值
<bean id="user" class="com.pojo.User">
<constructor-arg index="0" value="慕余"/>
bean>
类型
<bean id="user" class="com.pojo.User">
<constructor-arg type="java.lang.String" value="慕余"/>
bean>
参数名
<bean id="user" class="com.pojo.User">
<constructor-arg name="name" value="慕余"/>
bean>
总结:在配置文件加载的时候,容器中管理的对象就已经被创建了,就是bean
<alias name="user" alias="user2"/>
<bean id="user" class="com.pojo.User" name="user3">
<property name="name" value="慕余"/>
bean>
这个import,一般用于团队开发使用,他可以将多个配置文件,导入合并为一个
假设,现在项目中有多个人开发,负责不同的类开发,不同的类需要注册在不同的bean中,我们可以利用import将所有人的beans.xml合并为一个总的applicationContext.xml;
使用的时候,直接使用总的配置就可以了,这时候就需要improt进行导入整合
<import resource="beans.xml"/>
<import resource="beans2.xml"/>
如果两个文件中的bean有同名的,那么会按照导入顺序下面的会覆盖上面的
前面已经说过:即constructor-arg这个标签属性
<constructor-arg />
【环境搭建】
复杂类型
public class Student {
private String name;
private Address address;
private String[] book;
private List<String> hobbys;
private Map<String,String> card;
private Set<String> games;
private Student wife;
private Properties info;
完善注入信息
<bean id="address" class="com.pojo.Address">
bean>
<bean id="student" class="com.pojo.Student">
<property name="name" value="易易"/>
<property name="address" ref="address"/>
<property name="book">
<array>
<value>水浒传value>
<value>西游记value>
<value>三国志value>
array>
property>
<property name="hobbys">
<list>
<value>游戏value>
<value>睡觉value>
<value>看电影value>
list>
property>
<property name="card">
<map>
<entry key="电话" value="13333333333"/>
<entry key="啥呀" value="1654654550"/>
map>
property>
<property name="games">
<set>
<value>1value>
<value>2value>
<value>3value>
set>
property>
<property name="wife">
<null>null>
property>
<property name="info">
<props>
<prop key="学号">123456789prop>
<prop key="性别">男prop>
<prop key="username">whatprop>
<prop key="password">123456prop>
props>
property>
bean>
注意:单独放一个这个标签程序会报错
<bean>bean>
我们可以使用p命名空间和c命名空间进行注入
注意:使用p命名和c命名需要导入xml约束!
xmlns:p="http://www.springframework.org/schema/p"
xmlns:c="http://www.springframework.org/schema/c"
<bean id="user" class="com.pojo.User" p:name="易易" p:age="20"/>
<bean id="user2" class="com.pojo.User" c:age="20" c:name="易易"/>
@Test
public void test2(){
ApplicationContext context = new ClassPathXmlApplicationContext("userbeans.xml");
User user = context.getBean("user2", User.class);
System.out.println(user);
}
1.单例模式(Spring的默认机制)
<bean id="user2" class="com.pojo.User" c:age="18" c:name="易易" scope="singleton"/> singleton 单例模式
从容器中get的产生的对象相同,bean只注入一个对象
2.原型模式 每次从容器中get的时候,都会产生一个新的对象!
<bean id="user2" class="com.pojo.User" c:age="18" c:name="易易" scope="prototype"/>
3.其余的request,session,application,这些个只能在web开发中用到!
在spring中有三种自动装配的方式
public class People {
private Cat cat;
private Dog dog;
private String name;
<bean id="cat" class="com.pojo.Cat">bean>
<bean id="dog" class="com.pojo.Dog"/>
<bean id="people" class="com.pojo.People" autowire="byName">
<property name="name" value="易易"/>
bean>
<bean id="cat" class="com.pojo.Cat">bean>
<bean id="dog" class="com.pojo.Dog"/>
<bean id="people" class="com.pojo.People" autowire="byType">
<property name="name" value="易易"/>
bean>
要使用注解须知:
倒入约束,context约束
配置注解支持: context:annotation-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
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<context:annotation-config/>
beans>
直接在属性上使用即可,也可以在set方法上面使用
//如果显示定义Autowired的required属性为false,说明这个对象可以为null,否则不允许为空
@Autowired
private Cat cat;
@Autowired(required = false)
private Dog dog;
使用Autowired我们可以不用编写Set方法了,前提是你这个自动装配的属性在IOC(Spirng)容器汇总存在,且符合名字byName!
@Qualifier
如果@Autowired自动装配的环境比较复杂,自动装配无法通过一个注解【@Autowired】完成的时候,我们可以使用@Qualifier(value=“xxx”)去配置@Autowired的使用,指定一个唯一的bean对象注入!
@Autowired
private Cat cat;
@Autowired
@Qualifier(value = "dog1111")//指定一个bean id为这个value的bean自动装配这个属性对象
private Dog dog;
private String name;
<bean id="dog1111" class="com.pojo.Dog"/>
@Resource
@Resource
private Cat cat;
@Resource(name = "dog2")
private Dog dog;
@Nullable 字段标记了这个注解,说明这个字段可以为Null
小结:
@Resource和@Autowired的区别:
开启注解支持
<context:component-scan base-package="com.pojo"/>
<context:annotation-config/>
在Spring4之后,要使用注解开发,必须保证aop的包导入!
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-webmvcartifactId>
<version>5.3.23version>
dependency>
里面包含aop的包!
使用注解需要导入context约束,增加注解的支持
<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 http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
<context:annotation-config>context:annotation-config>
beans>
@Autowired:自动通过类型、名字装配
如果Autowired不能唯一自动装配上属性,则需要通过@Qualifier(value=“xxx”)
@Nullable:字段标记了这个注解,说明这个字段可以为null
@Resource:自动通过类型、名字装配
@Component:组件,放在类上,说明这个类被Spring管理了,就是bean
//在类上添加Component 组件 等价于
@Component
public class User {
private String name="易易";
}
//在属性或者set方法上添加@value("") 等价于
public class User {
@value("易易")
private String name="易易";
//或者
@value("易易")
public void setName(String name) {
this.name = name;
}
}
衍生的注解
@Component有几个衍生注解,我们在web开发中,会按照mvc三层架构分层!
这四个注解功能都是一样的,都是代表将某个类注册到Spring中,装配Bean
@Scope(“”):作用域,可以设置为单例模式singleton或者原型模式prototype
@Component
@Scope("singleton")
public class User {
private String name="易易";
public void setName(String name) {
this.name = name;
}
}
xml与注解:
xml与注解最佳实践:
我们现在要完全不使用Spring的xml配置了,全权交给我们的java来做!
实体类
//注解表示这个类被Spring接管了,注册到了容器中
@Component
public class User {
private String name;
public String getName() {
return name;
}
@Value("易易")//属性注入值
public void setName(String name) {
this.name = name;
}
}
配置类
//@Configuration代表这是一个配置类,就像之前的beans.xml文件作用一样
//这个Config类也会被spring容器托管,注册到容器中,因为它本身就是一个@Conponent
@Configuration
@ComponentScan("com.pojo")//这个相当于bean.xml配置中的扫描包
@Import(Config2.class)//关联别的config配置类
public class Config {
//注册一个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(Config.class);
User getUser= (User) context.getBean("getUser");
System.out.println(getUser.getName());
}
}
为什么要学习代理模式? 因为这就是SpringAOP的底层!【SpringAOP 和 SpringMVC】
代理模式的分类:
角色分析:
代理类:在不改变原有代码的基础上,为真实角色增加一个代理类,来实现更多的需求。(在不改变原有的代码的情况下去实现新的需求)
代码步骤:
接口
//出租房子
public interface Rent {
public void rent();
}
真实角色
//房东
public class Host implements Rent{
@Override
public void rent() {
System.out.println("房东要出租房子!");
}
}
代理角色
//租房中介
public class Proxy implements Rent{
private Host host;
public Proxy() {
}
public Proxy(Host host) {
this.host = host;
}
@Override
public void rent() {
host.rent();
seeHouse();
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();
}
}
代理模式的好处:
缺点:
聊聊AOP
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-pu8nmB4y-1669789097804)(C:\Users\MU\Desktop\笔记\聊聊AOP.jpg)]
需要了解两个类:Proxy:代理,InvocationHandler:调用处理程序
动态代理的好处:
动态获取代理对象
//用这个类,自动生成代理类!
public class ProxyInvocationHandler implements InvocationHandler {
//被代理的接口
private Object target;
public void setTarget(Object target) {
this.target = target;
}
// public static Object newProxyInstance(ClassLoader loader,Class>[] interfaces,InvocationHandler h)
/*
newProxyInstance,方法有三个参数:
loader: 用哪个类加载器去加载代理对象
interfaces:动态代理类需要实现的接口
h:动态代理方法在执行时,会调用h里面的invoke方法去执行
*/
//生成得到代理类
public Object getProxy(){
return Proxy.newProxyInstance(this.getClass().getClassLoader(),target.getClass().getInterfaces(),this);
}
/*
invoke三个参数:
proxy:就是代理对象,newProxyInstance方法的返回对象
method:调用的方法
args: 方法中的参数
*/
//处理动态实例,并返回结果
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
//getName,获取使用的方法名
log(method.getName());
//动态代理的本质,就是使用反射机制实现!
Object result=method.invoke(target,args);//进行实现target接口的真实对象的方法
return result;
}
//添加代理动作
public void log(String msg){
System.out.println("执行了" + msg+"方法");
}
}
public class Client {
public static void main(String[] args) {
//真实角色
UserServiceImpl userService = new UserServiceImpl();
//代理角色
ProxyInvocationHandler handler = new ProxyInvocationHandler();
//通过调用程序处理角色来处理我们要调用的接口对象
handler.setTarget(userService);
UserService proxy = (UserService) handler.getProxy();//动态生成代理角色
proxy.delete();
}
}
AOP为Aspect Oriented Programming的缩写,意为:面向切面编程,通过预编译方式和运行期间动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
可以将日志记录、性能统计、安全控制、事务处理、异常处理等代码从业务逻辑代码中分离出来,放到一个非业务逻辑的方法中,进而改变这些行为的同时不影响业务逻辑代码;实现了减少重复代码以及模块间低耦合的目的,以此来达到专心处理业务逻辑代码,不用管日志记录、事务控制及权限控制等。
提供声明式事务;允许用户自定义切面
Aop在不改变原有的代码的情况下,去增加新的功能
依赖
<dependency>
<groupId>org.aspectjgroupId>
<artifactId>aspectjweaverartifactId>
<version>1.9.9.1version>
dependency>
<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
http://www.springframework.org/schema/aop/spring-aop.xsd">
<bean id="userService" class="com.service.UserServiceImpl">bean>
<bean id="log" class="com.log.Log">bean>
<bean id="afterLog" class="com.log.AfterLog">bean>
<aop:config>
<aop:pointcut id="pointcut" expression="execution(* com.service.UserServiceImpl.*(..))"/>
<aop:advisor advice-ref="log" pointcut-ref="pointcut"/> 前置日志
<aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/> 后置日志
aop:config>
beans>
日志通知
public class Log implements MethodBeforeAdvice {
//method:要执行的目标对象的方法
//args:参数
//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="diy" class="com.diy.DiyPointCut"/>
<aop:config>
<aop:aspect ref="diy">
<aop:pointcut id="point" expression="execution(* com.service.UserServiceImpl.*(..))"/>
<aop:before method="before" pointcut-ref="point"/>
<aop:after method="after" pointcut-ref="point"/>
aop:aspect>
aop:config>
<bean id="annotationPointCut" class="com.diy.AnnotationPointCut"/>
<aop:aspectj-autoproxy/>
@Aspect //注解标注这个类是一个切面
public class AnnotationPointCut {
@Before("execution(* com.service.UserServiceImpl.*(..))")
public void before(){
System.out.println("=========方法执行前=========");
}
//在环绕增强中,我们可以给定一个参数,代表我们要获取处理的切入的点
@Around("execution(* com.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);
}
}
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-X6XIHHlb-1669789097805)(C:\Users\MU\Desktop\笔记\aop注解开发.jpg)]
步骤
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>java-springartifactId>
<groupId>org.examplegroupId>
<version>1.0-SNAPSHOTversion>
parent>
<modelVersion>4.0.0modelVersion>
<artifactId>spring-10-mybatisartifactId>
<dependencies>
<dependency>
<groupId>junitgroupId>
<artifactId>junitartifactId>
<version>4.12version>
dependency>
<dependency>
<groupId>mysqlgroupId>
<artifactId>mysql-connector-javaartifactId>
<version>5.1.48version>
dependency>
<dependency>
<groupId>org.mybatisgroupId>
<artifactId>mybatisartifactId>
<version>3.5.2version>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-webmvcartifactId>
<version>5.3.23version>
dependency>
<dependency>
<groupId>org.springframeworkgroupId>
<artifactId>spring-jdbcartifactId>
<version>5.3.23version>
dependency>
<dependency>
<groupId>org.aspectjgroupId>
<artifactId>aspectjweaverartifactId>
<version>1.9.9.1version>
dependency>
<dependency>
<groupId>org.mybatisgroupId>
<artifactId>mybatis-springartifactId>
<version>2.0.7version>
dependency>
<dependency>
<groupId>org.projectlombokgroupId>
<artifactId>lombokartifactId>
<version>RELEASEversion>
<scope>compilescope>
dependency>
<dependency>
<groupId>log4jgroupId>
<artifactId>log4jartifactId>
<version>1.2.12version>
dependency>
dependencies>
<build>
<resources>
<resource>
<directory>src/main/resourcesdirectory>
<includes>
<include>**/*.propertiesinclude>
<include>**/*.xmlinclude>
includes>
<filtering>truefiltering>
resource>
<resource>
<directory>src/main/javadirectory>
<includes>
<include>**/*.propertiesinclude>
<include>**/*.xmlinclude>
includes>
<filtering>truefiltering>
resource>
resources>
build>
project>
编写数据源
SqlSessionFactory
SqlSessionTemplate
需要给接口加实现类【】
将自己写的实现类,注入到Spring中
测试
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-VP3ZnycH-1669789097805)(C:\Users\MU\Desktop\笔记\spring整合mybatis简单过程.jpg)]
spring-dao.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="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="123456"/>
bean>
<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/mapper/UserMapper.xml"/>
bean>
<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
<constructor-arg index="0" ref="sqlSessionFactory"/>
bean>
<bean id="userMapper" class="com.mapper.UserMapperImpl">
<property name="sqlSession" ref="sqlSession"/>
bean>
beans>
对应以前的mybatis
导入资源
InputStream in = Resources.getResourceAsStream(resources);
<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="123456"/>
bean>
创建sqlSessionFactory
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(in);
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
获取sqlSession,在spring整合中使用SqlSessionTemplate代替sqlSession
SqlSession sqlSession = sqlSessionFactory.openSession(true);
bean>
<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
<constructor-arg index="0" ref="sqlSessionFactory"/>
bean>
实现类需要注入sqlSession
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();
}
}
配置mapper时注入sqlSession
<bean id="userMapper" class="com.mapper.UserMapperImpl">
<property name="sqlSession" ref="sqlSession"/>
bean>
text
@Test
public void text(){
ApplicationContext context = new ClassPathXmlApplicationContext("spring-dao.xml");
UserMapper usermapper = context.getBean("userMapper", UserMapper.class);
for (User u:usermapper.selectUser()) {
System.out.println(u);
}
}
进阶
继承SqlSessionDaoSupport减少创建SqlSessionTemplate需要注册SqlSession
public class UserMapperImpl2 extends SqlSessionDaoSupport implements UserMapper {
public List<User> selectUser() {
return getSqlSession().getMapper(UserMapper.class).selectUser();
}
}
可使用SqlSessionDaoSupport简化获取SqlSessionTemplate
spring-dao.xml中少了创建SqlSessionTemplate这一步
使用SqlSessionDaoSupport就不需要写这一个配置
<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
<constructor-arg index="0" ref="sqlSessionFactory"/>
bean>
applicationContext.xml中bean对象直接创建SqlSessionFactory
<bean id="userMapperTwo" class="com.mapper.UserMapperImpl2">
<property name="sqlSessionFactory" ref="sqlSessionFactory"/>
bean>
事务的ACID原则:
声明式事务:AOP 事务:要么都成功,要么都失败!
<bean id="transactionManger" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
bean>
<tx:advice id="txAdvice" transaction-manager="transactionManger">
<tx:attributes>
<tx:method name="add" propagation="REQUIRED"/>
<tx:method name="*" propagation="REQUIRED"/>
tx:attributes>
tx:advice>
<aop:config>
<aop:pointcut id="txPoint" expression="execution(* com.mapper.*.*(..))"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="txPoint"/>
aop:config>
为什么需要事务?