Spring5 一、Spring 框架概述
Spring 是轻量级的开源的 JavaEE 框架
Spring 可以解决企业应用开发的复杂性
Spring 有两个核心部分:IOC 和 Aop
IOC:控制反转,把创建对象过程交给 Spring 进行管理
Aop:面向切面,不修改源代码进行功能增强
Spring 特点
方便解耦,简化开发
Aop 编程支持
方便程序测试
方便和其他框架进行整合
方便进行事务操作
降低 API 开发难度
==Spring5 入门案例 ==
jar包地址:https://repo.spring.io/release/org/springframework/spring/
创建普通类,在这个类创建普通方法
1 2 3 4 5 public class User { public void add () { System.out.println("add......" ); } }
创建 Spring 配置文件,在配置文件配置创建的对象
1 2 3 4 5 6 7 8 <?xml version="1.0" encoding="UTF-8" ?> <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 ="user" class ="com.atguigu.spring5.User" > </bean > </beans >
进行测试代码编写
1 2 3 4 5 6 7 8 9 10 @Test public void testAdd () { ApplicationContext context = new ClassPathXmlApplicationContext ("bean1.xml" ); User user = context.getBean("user" , User.class); System.out.println(user); user.add(); }
二、IOC 容器 2.1 IOC 底层原理 IOC简介
控制反转,把对象创建和对象之间的调用过程,交给 Spring 进行管理
使用 IOC 目的:为了耦合度降低
做入门案例就是 IOC 实现
IOC 底层原理:xml 解析、工厂模式、反射
降低耦合
IOC进一步降低耦合
2.2 IOC 接口(BeanFactory)
OC 思想基于 IOC 容器完成,IOC 容器底层就是对象工厂
Spring 提供 IOC 容器实现两种方式:(两个接口)
BeanFactory:IOC 容器基本实现,是 Spring 内部的使用接口,不提供开发人员进行使用* 加载配置文件时候不会创建对象,在获取对象(使用)才去创建对象
ApplicationContext:BeanFactory 接口的子接口,提供更多更强大的功能,一般由开发人员进行使用* 加载配置文件时候就会把在配置文件对象进行创建
ApplicationContext 接口有实现类
2.3 IOC操作Bean管理(xml) Bean 管理指的是两个操作
有两种方式实现:
在 spring 配置文件中,使用 bean 标签,标签里面添加对应属性,就可以实现对象创建
在 bean 标签有很多属性,介绍常用的属性
id 属性:唯一标识
class 属性:类全路径(包类路径)
创建对象时候,默认也是执行无参数构造方法完成对象创建
① set 方法进行注入 1 2 3 4 5 6 7 8 9 10 11 12 public class Book { private String bname; private String bauthor; public void setBname (String bname) { this .bname = bname; } public void setBauthor (String bauthor) { this .bauthor = bauthor; } }
1 2 3 4 5 6 7 8 9 <bean id ="book" class ="com.atguigu.spring5.Book" > <property name ="bname" value ="易筋经" > </property > <property name ="bauthor" value ="达摩老祖" > </property > </bean >
② 用有参数构造进行注入 1 2 3 4 5 6 7 8 9 10 public class Orders { private String oname; private String address; public Orders (String oname,String address) { this .oname = oname; this .address = address; } }
1 2 3 4 <bean id ="orders" class ="com.atguigu.spring5.Orders" > <constructor-arg name ="oname" value ="电脑" > </constructor-arg > <constructor-arg name ="address" value ="China" > </constructor-arg > </bean >
③ p 名称空间注入 第一步 添加 p 名称空间在配置文件中
1 2 3 <bean id ="book" class ="com.atguigu.spring5.Book" p:bname ="九阳神功" p:bauthor ="无名氏" ></bean >
④ xml 注入其他类型属性 null 值
1 2 3 <property name ="address" > <null /> </property >
属性值包含特殊符号
1 2 3 4 5 6 7 <property name ="address" > <value > <![CDATA[<<南京>>]]></value > </property >
注入属性-外部 bean
创建两个类 service 类和 dao 类
在 service 调用 dao 里面的方法
在 spring 配置文件中进行配置
1 2 3 4 5 6 7 8 9 10 11 public class UserService { private UserDao userDao; public void setUserDao (UserDao userDao) { this .userDao = userDao; } public void add () { System.out.println("service add..............." ); userDao.update(); } }
1 2 3 4 5 6 7 8 9 <bean id ="userService" class ="com.atguigu.spring5.service.UserService" > <property name ="userDao" ref ="userDaoImpl" > </property > </bean > <bean id ="userDaoImpl" class ="com.atguigu.spring5.dao.UserDaoImpl" > </bean >
注入属性-内部 bean
一对多关系:部门和员工,一个部门有多个员工,一个员工属于一个部门,部门是一,员工是多
在实体类之间表示一对多关系,员工表示所属部门,使用对象类型属性进行表示
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 public class Dept { private String dname; public void setDname (String dname) { this .dname = dname; } } public class Emp { private String ename; private String gender; private Dept dept; public void setDept (Dept dept) { this .dept = dept; } public void setEname (String ename) { this .ename = ename; } public void setGender (String gender) { this .gender = gender; } }
1 2 3 4 5 6 7 8 9 10 11 12 <bean id ="emp" class ="com.atguigu.spring5.bean.Emp" > <property name ="ename" value ="lucy" > </property > <property name ="gender" value ="女" > </property > <property name ="dept" > <bean id ="dept" class ="com.atguigu.spring5.bean.Dept" > <property name ="dname" value ="安保部" > </property > </bean > </property > </bean >
注入属性-级联赋值
(1)第一种写法
1 2 3 4 5 6 7 8 9 10 <bean id="emp" class="com.atguigu.spring5.bean.Emp" > <!--设置两个普通属性--> <property name="ename" value="lucy" ></property> <property name="gender" value="女" ></property> <!--级联赋值--> <property name="dept" ref="dept" ></property> </bean> <bean id="dept" class="com.atguigu.spring5.bean.Dept" > <property name="dname" value="财务部" ></property> </bean>
(2)第二种写法
1 2 3 4 5 6 7 8 <bean id ="emp" class ="com.atguigu.spring5.bean.Emp" > <property name ="ename" value ="lucy" > </property > <property name ="gender" value ="女" > </property > <property name ="dept" ref ="dept" > </property > <property name ="dept.dname" value ="技术部" > </property > </bean >
xml 注入集合属性
1、注入数组类型属性 2、注入 List 集合类型属性 3、注入 Map 集合类型属性
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 public class Stu { private String[] courses; private List<String> list; private Map<String,String> maps; private Set<String> sets; public void setSets (Set<String> sets) { this .sets = sets; } public void setCourses (String[] courses) { this .courses = courses; } public void setList (List<String> list) { this .list = list; } public void setMaps (Map<String, String> maps) { this .maps = maps; } }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 <bean id ="stu" class ="com.atguigu.spring5.collectiontype.Stu" > <property name ="courses" > <array > <value > java 课程</value > <value > 数据库课程</value > </array > </property > <property name ="list" > <list > <value > 张三</value > <value > 小三</value > </list > </property > <property name ="maps" > <map > <entry key ="JAVA" value ="java" > </entry > <entry key ="PHP" value ="php" > </entry > </map > </property > <property name ="sets" > <set > <value > MySQL</value > <value > Redis</value > </set > </property > </bean >
在集合里面设置对象类型值
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <bean id ="course1" class ="com.atguigu.spring5.collectiontype.Course" > <property name ="cname" value ="Spring5 框架" > </property > </bean > <bean id ="course2" class ="com.atguigu.spring5.collectiontype.Course" > <property name ="cname" value ="MyBatis 框架" > </property > </bean > <bean > <property name ="courseList" > <list > <ref bean ="course1" > </ref > <ref bean ="course2" > </ref > </list > </property > </bean >
把集合注入部分提取出来
==提取公共部分==
1 2 3 4 5 6 7 8 9 <?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:p ="http://www.springframework.org/schema/p" xmlns:util ="http://www.springframework.org/schema/util" xsi:schemaLocation ="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd" >
1 2 3 4 5 6 7 8 9 10 <util:list id ="bookList" > <value > 易筋经</value > <value > 九阴真经</value > <value > 九阳神功</value > </util:list > <bean id ="book" class ="com.atguigu.spring5.collectiontype.Book" > <property name ="list" ref ="bookList" > </property > </bean >
2.4 Bean管理其他知识 ① 工厂Bean Spring 有两种类型 bean,一种普通 bean,另外一种工厂 bean(FactoryBean)
普通 bean:在配置文件中定义 bean 类型就是返回类型
工厂 bean:在配置文件定义 bean 类型可以和返回类型不一样
第一步 创建类,让这个类作为工厂 bean,实现接口 FactoryBean
第二步 实现接口里面的方法,在实现的方法中定义返回的 bean 类型
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 public class MyBean implements FactoryBean <Course> { @Override public Course getObject () throws Exception { Course course = new Course (); course.setCname("abc" ); return course; } @Override public Class<?> getObjectType() { return null ; } @Override public boolean isSingleton () { return false ; } }
1 <bean id ="myBean" class ="com.atguigu.spring5.factorybean.MyBean" > </bean >
1 2 3 4 5 6 7 @Test public void test3 () { ApplicationContext context = new ClassPathXmlApplicationContext ("bean3.xml" ); Course course = context.getBean("myBean" , Course.class); System.out.println(course); }
② bean 作用域 ==在 Spring 里面,默认情况下,bean 是单实例对象==
scope 属性值
第一个值 默认值,singleton,表示是单实例对象
第二个值 prototype,表示是多实例对象
③ bean 生命周期
通过构造器创建 bean 实例(无参数构造)
为 bean 的属性设置值和对其他 bean 引用(调用 set 方法)
调用 bean 的初始化的方法(需要进行配置初始化的方法)
bean 可以使用了(对象获取到了)
当容器关闭时候,调用 bean 的销毁的方法(需要进行配置销毁的方法)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 public class Orders { public Orders () { System.out.println("第一步 执行无参数构造创建 bean 实例" ); } private String oname; public void setOname (String oname) { this .oname = oname; System.out.println("第二步 调用 set 方法设置属性值" ); } public void initMethod () { System.out.println("第三步 执行初始化的方法" ); } public void destroyMethod () { System.out.println("第五步 执行销毁的方法" ); } }
1 2 3 <bean id ="orders" class ="com.atguigu.spring5.bean.Orders" init method ="initMethod" destroy-method ="destroyMethod" > <property name ="oname" value ="手机" > </property > </bean >
bean 的后置处理器,bean 生命周期有七步
通过构造器创建 bean 实例(无参数构造)
为 bean 的属性设置值和对其他 bean 引用(调用 set 方法)
把 bean 实例传递 bean 后置处理器的方法 postProcessBeforeInitialization
调用 bean 的初始化的方法(需要进行配置初始化的方法)
把 bean 实例传递 bean 后置处理器的方法 postProcessAfterInitialization
bean 可以使用了(对象获取到了)
当容器关闭时候,调用 bean 的销毁的方法(需要进行配置销毁的方法)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 (1 )创建类,实现接口 BeanPostProcessor,创建后置处理器 public class MyBeanPost implements BeanPostProcessor { @Override public Object postProcessBeforeInitialization (Object bean, String beanName) throws BeansException { System.out.println("在初始化之前执行的方法" ); return bean; } @Override public Object postProcessAfterInitialization (Object bean, String beanName) throws BeansException { System.out.println("在初始化之后执行的方法" ); return bean; } }
④ xml 自动装配 自动装配:根据指定装配规则(属性名称或者属性类型),Spring 自动将匹配的属性值进行注入
(1)根据属性名称自动注入
1 2 3 4 5 6 7 8 <bean id ="emp" class ="com.atguigu.spring5.autowire.Emp" autowire ="byName" > </bean > <bean id ="dept" class ="com.atguigu.spring5.autowire.Dept" > </bean >
(2)根据属性类型自动注入
1 2 <bean id ="emp" class ="com.atguigu.spring5.autowire.Emp" autowire ="byType" > </bean > <bean id ="dept" class ="com.atguigu.spring5.autowire.Dept" > </bean >
⑤ 外部属性文件 1.引入Durid(JAR包)
1 2 3 4 5 6 7 <bean id ="dataSource" class ="com.alibaba.druid.pool.DruidDataSource" > <property name ="driverClassName" value ="com.mysql.jdbc.Driver" > </property > <property name ="url" value ="jdbc:mysql://localhost:3306/userDb" ></property > <property name ="username" value ="root" > </property > <property name ="password" value ="root" > </property > </bean >
2.引入外部属性文件配置数据库连接池
把外部 properties 属性文件引入到 spring 配置文件中 引入 context 名称空间
1 2 3 4 5 6 7 8 9 10 11 <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:util ="http://www.springframework.org/schema/util" 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/util http://www.springframework.org/schema/util/spring-util.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd" >
1 2 3 4 5 6 7 8 9 <context:property-placeholder location ="classpath:jdbc.properties" /> <bean id ="dataSource" class ="com.alibaba.druid.pool.DruidDataSource" > <property name ="driverClassName" value ="${prop.driverClass}" > </property > <property name ="url" value ="${prop.url}" > </property > <property name ="username" value ="${prop.userName}" > </property > <property name ="password" value ="${prop.password}" > </property > </bean >
2.5 操作Bean管理(注解)
@Component
@Service
@Controller
@Repository
上面四个注解功能是一样的,都可以用来创建 bean 实例
第二步 开启组件扫描
1 2 3 4 5 <context:component-scan base-package ="com.atguigu" > </context:component-scan >
第三步 创建类,在类上面添加创建对象注解
1 2 3 4 5 6 7 8 9 @Component(value = "userService") public class UserService { public void add () { System.out.println("service add......." ); } }
开启组件扫描细节配置
1 2 3 4 5 6 7 8 9 10 11 12 13 <context:component-scan base-package ="com.atguigu" use-default filters ="false" > <context:include-filter type ="annotation" expression ="org.springframework.stereotype.Controller" /> </context:component-scan > <context:component-scan base-package ="com.atguigu" > <context:exclude-filter type ="annotation" expression ="org.springframework.stereotype.Controller" /> </context:component-scan >
基于注解方式实现属性注入
==@Autowired ==:根据属性类型进行自动装配
创建 service 和 dao 对象,在 service 和 dao 类添加创建对象注解
在 service 注入 dao 对象,在 service 类添加 dao 类型属性,在属性上面使用注解
1 2 3 4 5 6 7 8 9 10 11 12 @Service public class UserService { @Autowired private UserDao userDao; public void add () { System.out.println("service add......." ); userDao.add(); } }
==@Qualifier ==:根据名称进行注入 这个@Qualifier 注解的使用,和上面@Autowired 一起使用
1 2 3 @Autowired @Qualifier(value = "userDaoImpl1") private UserDao userDao;
==@Resource ==:可以根据类型注入,可以根据名称注入
1 2 3 @Resource(name = "userDaoImpl1") private UserDao userDao;
==@Value ==:注入普通类型属性
1 2 @Value(value = "abc") private String name;
完全注解开发
(1)创建配置类,替代 xml 配置文件
1 2 3 4 @Configuration @ComponentScan(basePackages = {"com.atguigu"}) public class SpringConfig {}
(2)编写测试类
1 2 3 4 5 6 7 8 @Test public void testService2 () { ApplicationContext context= new AnnotationConfigApplicationContext (SpringConfig.class); UserService userService = context.getBean("userService" , UserService.class); System.out.println(userService); userService.add(); }
三、Aop
面向切面编程(方面),利用 AOP 可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
通俗描述:不通过修改源代码方式,在主干功能里面添加新功能
使用登录例子说明 AOP
3.1 AOP 底层原理 有两种情况动态代理
第一种 有接口情况,使用 JDK 动态代理
没有接口情况,使用 CGLIB 动态代理
3.2 JDK 动态代理 使用 JDK 动态代理,使用 Proxy 类里面的方法创建代理对象,调用 newProxyInstance 方法
方法有三个参数:
第一参数,类加载器
第二参数,增强方法所在的类,这个类实现的接口,支持多个接口
第三参数,实现这个接口 InvocationHandler,创建代理对象,写增强的部分
1 2 3 4 public interface UserDao { public int add (int a,int b) ; public String update (String id) ; }
1 2 3 4 5 6 7 8 9 10 public class UserDaoImpl implements UserDao { @Override public int add (int a, int b) { return a+b; } @Override public String update (String id) { return id; } }
使用 Proxy 类创建接口代理对象
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 public class JDKProxy { public static void main (String[] args) { Class[] interfaces = {UserDao.class}; UserDaoImpl userDao = new UserDaoImpl (); UserDao dao = (UserDao)Proxy.newProxyInstance(JDKProxy.class.getClassLoader(), interfaces, new UserDaoProxy (userDao)); int result = dao.add(1 , 2 ); System.out.println("result:" +result); } } class UserDaoProxy implements InvocationHandler { private Object obj; public UserDaoProxy (Object obj) { this .obj = obj; } @Override public Object invoke (Object proxy, Method method, Object[] args) throws Throwable { System.out.println("方法之前执行...." +method.getName()+" :传递的参=数..." + Arrays.toString(args)); Object res = method.invoke(obj, args); System.out.println("方法之后执行...." +obj); return res; } }
3.3 AOP术语 连接点:类中哪些方法可以被增强,称为连接点(四个方法都能被增强)
切入点:实际被增强的方法称为切入点(但我只增强Add方法)
通知:实际被增强的部分(通知的类型如下)
前置通知:前面增强
后置通知:后面增强
环绕通知:前后增强
异常通知:异常时通知
最终通知:一定会通知(finally)
切面:动作,把通知应用到切入点
3.4 AspectJ Spring 框架一般都是基于 AspectJ 实现 AOP 操作
AspectJ 不是 Spring 组成部分,独立 AOP 框架,一般把 AspectJ 和 Spirng 框架一起使用,进行 AOP 操作
基于 AspectJ 实现 AOP 操作
基于 xml 配置文件实现
基于注解方式实现(使用)
引入依赖
切入点表达式 :知道对哪个类里面的哪个方法进行增强
1 2 3 4 5 6 7 8 语法结构: execution([权限修饰符] [返回类型] [类全路径] [方法名称]([参数列表]) ) 举例 1:对 com.atguigu.dao.BookDao 类里面的 add 进行增强 execution(* com.atguigu.dao.BookDao.add(..)) 举例 2:对 com.atguigu.dao.BookDao 类里面的所有的方法进行增强 execution(* com.atguigu.dao.BookDao.* (..)) 举例 3:对 com.atguigu.dao 包里面所有类,类里面所有方法进行增强 execution(* com.atguigu.dao.*.* (..))
1、创建类,在类里面定义方法
1 2 3 4 5 public class User { public void add () { System.out.println("add......." ); } }
2、创建增强类(编写增强逻辑)
1 2 3 4 5 6 7 在增强类里面,创建方法,让不同方法代表不同通知类型 public class UserProxy { public void before () { System.out.println("before......" ); } }
1 2 3 4 5 6 7 8 9 10 11 12 13 <?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:context ="http://www.springframework.org/schema/context" 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/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:component-scan base package ="com.atguigu.spring5.aopanno" > </context:component-scan >
在增强类上面添加注解 @Aspect
1 2 3 4 @Component @Aspect public class UserProxy {}
1 2 3 spring 配置文件中开启生成代理对象 <aop:aspectj-autoproxy > </aop:aspectj-autoproxy >
配置不同类型的通知 在增强类的里面,在作为通知方法上面添加通知类型注解,使用切入点表达式配置
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 @Component @Aspect public class UserProxy { @Before(value = "execution(* com.atguigu.spring5.aopanno.User.add(..))") public void before () { System.out.println("before........." ); } @AfterReturning(value = "execution(* com.atguigu.spring5.aopanno.User.add(..))") public void afterReturning () { System.out.println("afterReturning........." ); } @After(value = "execution(* com.atguigu.spring5.aopanno.User.add(..))") public void after () { System.out.println("after........." ); } @AfterThrowing(value = "execution(* com.atguigu.spring5.aopanno.User.add(..))") public void afterThrowing () { System.out.println("afterThrowing........." ); } @Around(value = "execution(* com.atguigu.spring5.aopanno.User.add(..))") public void around (ProceedingJoinPoint proceedingJoinPoint) throws Throwable { System.out.println("环绕之前........." ); proceedingJoinPoint.proceed(); System.out.println("环绕之后........." ); } }
相同的切入点抽取
1 2 3 4 5 6 7 8 9 10 @Pointcut(value = "execution(* com.atguigu.spring5.aopanno.User.add(..))") public void pointdemo () { } @Before(value = "pointdemo()") public void before () { System.out.println("before........." ); }
有多个增强类多同一个方法进行增强,设置增强类优先级
1 2 3 4 5 在增强类上面添加注解 @Order(数字类型值),数字类型值越小优先级越高 @Component @Aspect @Order(1) public class PersonProxy
==完全使用注解开发 == 创建配置类,不需要创建 xml 配置文件
1 2 3 4 5 @Configuration @ComponentScan(basePackages = {"com.atguigu"}) @EnableAspectJAutoProxy(proxyTargetClass = true) public class ConfigAop {}
xml方式:
创建两个类,增强类和被增强类,创建方法
在 spring 配置文件中创建两个类对象
1 2 3 <!--创建对象--> <bean id="book" class="com.atguigu.spring5.aopxml.Book" ></bean> <bean id="bookProxy" class="com.atguigu.spring5.aopxml.BookProxy" ></bean>
在 spring 配置文件中配置切入点
1 2 3 4 5 6 7 8 9 10 11 <aop:config > <aop:pointcut id ="p" expression ="execution(* com.atguigu.spring5.aopxml.Book.buy(..))" /> <aop:aspect ref ="bookProxy" > <aop:before method ="before" pointcut-ref ="p" /> </aop:aspect > </aop:config >
四、JdbcTemplate Spring 框架对 JDBC 进行封装,使用 JdbcTemplate 方便实现对数据库操作
1 2 3 4 5 6 7 <bean id ="dataSource" class ="com.alibaba.druid.pool.DruidDataSource" destroy-method ="close" > <property name ="url" value ="jdbc:mysql:///user_db" /> <property name ="username" value ="root" /> <property name ="password" value ="root" /> <property name ="driverClassName" value ="com.mysql.jdbc.Driver" /> </bean >
配置 JdbcTemplate 对象,注入 DataSource
1 2 3 4 5 <bean id ="jdbcTemplate" class ="org.springframework.jdbc.core.JdbcTemplate" > <property name ="dataSource" ref ="dataSource" > </property > </bean >
创建 service 类,创建 dao 类,在 dao 注入 jdbcTemplate 对象
1 2 <context:component-scan base-package ="com.atguigu" > </context:component-scan >
1 2 3 4 5 6 @Service public class BookService { @Autowired private BookDao bookDao; }
1 2 3 4 5 6 @Repository public class BookDaoImpl implements BookDao { @Autowired private JdbcTemplate jdbcTemplate; }
对应数据库创建实体类
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 @Repository public class BookDaoImpl implements BookDao { @Autowired private JdbcTemplate jdbcTemplate; @Override public void add (Book book) { String sql = "insert into t_book values(?,?,?)" ; Object[] args = {book.getUserId(), book.getUsername(), book.getUstatus()}; int update = jdbcTemplate.update(sql,args); System.out.println(update); } }
查询返回某个值
⚫ 有两个参数
⚫ 第一个参数:sql 语句
⚫ 第二个参数:返回类型 Class
1 2 3 4 5 6 7 @Override public int selectCount () { String sql = "select count(*) from t_book" ; Integer count = jdbcTemplate.queryForObject(sql, Integer.class); return count; }
查询返回对象
⚫ 有三个参数
⚫ 第一个参数:sql 语句
⚫ 第二个参数:RowMapper 是接口,针对返回不同类型数据,使用这个接口里面实现类完成数据封装
⚫ 第三个参数:sql 语句值
1 2 3 4 5 6 7 @Override public Book findBookInfo (String id) { String sql = "select * from t_book where user_id=?" ; Book book = jdbcTemplate.queryForObject(sql, new BeanPropertyRowMapper <Book>(Book.class), id); return book; }
1 2 3 4 5 6 7 8 @Override public List<Book> findAllBook () { String sql = "select * from t_book" ; List<Book> bookList = jdbcTemplate.query(sql, new BeanPropertyRowMapper <Book>(Book.class)); return bookList; }
五、事务管理 事务四个特性(ACID):原子性,一致性,隔离性,持久性
开启事务注解
1 2 <tx:annotation-driven transaction manager ="transactionManager" > </tx:annotation-driven >
1 2 3 @Service @Transactional public class UserService
propagation:事务传播行为当一个事务方法被另外一个事务方法调用时候,这个事务方法如何进行
isolation:事务隔离级别
(1)事务有特性成为隔离性,多事务操作之间不会产生影响。不考虑隔离性产生很多问题 (2)有三个读问题:脏读、不可重复读、虚(幻)读
脏读 :一个未提交事务读取到另一个未提交事务的数据
不可重复读 :一个未提交事务读取到另一提交事务修改数据
虚读 :一个未提交事务读取到另一提交事务添加数据
timeout:超时时间 (1)事务需要在一定时间内进行提交,如果不提交进行回滚 (2)默认值是 -1 ,设置时间以秒单位进行计算
readOnly:是否只读 (1)读:查询操作,写:添加修改删除操作 (2)readOnly 默认值 false,表示可以查询,可以添加修改删除操作 (3)设置 readOnly 值是 true,设置成 true 之后,只能查询
rollbackFor:回滚 (1)设置出现哪些异常进行事务回滚
noRollbackFor:不回滚 (1)设置出现哪些异常不进行事务回滚