首页 > 其他分享 >mybatis-study

mybatis-study

时间:2022-11-09 21:00:13浏览次数:40  
标签:study springframework public class import mybatis org void

pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<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">
   <modelVersion>4.0.0</modelVersion>

   <groupId>org.example</groupId>
   <artifactId>Demo01</artifactId>
   <version>1.0-SNAPSHOT</version>

   <properties>
       <maven.compiler.source>8</maven.compiler.source>
       <maven.compiler.target>8</maven.compiler.target>
   </properties>

   <dependencies>
       <dependency>
       <groupId>org.springframework</groupId>
       <artifactId>spring-webmvc</artifactId>
       <version>5.3.23</version>
       </dependency>
   </dependencies>

</project>

beans:

<?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
       https://www.springframework.org/schema/beans/spring-beans.xsd">
<!--使用Spring创建对象
   类型 变量名=new 类型();
   Hello hello=new Hello();
   id=变量名
   class=new的对象;
   property相当于给对象的属性设置一个值-->
   <bean id="hello" class="com.xcl.pojo.Hello">
       <property name="str" value="Spring"/>
   </bean>

</beans>

1.IOC创建对象的方式

1.使用无参构造创建对象,默认

<bean id="user" class="com.xcl.pojo.User">
   <property name="name" value="xcl"/>
</bean>

2.假设要使用有参构造创建对象

(1)下标赋值

 <bean id="user" class="com.xcl.pojo.User">
   <constructor-arg index="0" value="xcl"/>
   </bean>

(2)类型

第二种:通过类型,不建议使用
<bean id="user" class="com.xcl.pojo.User">
   <constructor-arg type="java.lang.String" value="xcl"/>
</bean>

(3)参数名

 <bean id="user" class="com.xcl.pojo.User">
   <constructor-arg name="name" value="xcl"/>
</bean>

 

//测试
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
       User user = (User) context.getBean("user");
       user.show();

 

总结:

在配置文件加载的时候,容器中管理的对象就已经初始化了

2.Spring配置

1.别名

<!--alias属性是别名,相当于第二个名字,在测试中引用哪个名字都可以运行-->
   <alias name="user" alias="usernew"></alias>

2.Bean配置

<!--id:bean的唯一标识符,也就是相当于我们学的对象名
   class:bean对象所对应的权限定名:包名+类型
   name:也是别名,而且name可以同时取多个别名-->
   <bean id="userT" class="com.xcl.pojo.UserT" name="u1 ,u2, u3">
       <property name="name" value="西部开源"/>
   </bean>

3.import

可以提供多个配置文件,导入合并为一个

假设,现在项目中有多个人开发,这三个人负责不同的类开发,不同的类需要注册在不同的bean中,我们可以利用import将所有的beans.xml合并为一个总的

  • 张三

  • 李四

  • 王五

    applicationContext.xml

    <import resource="bean1.xml"/>
    <import resource="bean2.xml"/>
    <import resource="bean3.xml"/>

    使用的时候,直接使用总的配置就行

3.依赖注入

1.实例

Student类:

package com.xcl.pojo;

import java.util.Arrays;
import java.util.List;
import java.util.Properties;
import java.util.Set;


public class Student {
   private String name;
   private Address address;
   private String[] books;
   private List<String> hobbys;
   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> getHobbys() {
       return hobbys;
  }

   public void setHobbys(List<String> hobbys) {
       this.hobbys = hobbys;
  }

   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 +
               ", books=" + Arrays.toString(books) +
               ", hobbys=" + hobbys +
               ", games=" + games +
               ", wife='" + wife + '\'' +
               ", info=" + info +
               '}';
  }
}

Address类:

package com.xcl.pojo;

public class Address {
   private String address;

   public String getAddress() {
       return address;
  }

   public void setAddress(String address) {
       this.address = address;
  }
}

beans.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"
      xsi:schemaLocation="http://www.springframework.org/schema/beans
       https://www.springframework.org/schema/beans/spring-beans.xsd">

   <bean id="student" class="com.xcl.pojo.Student">
       <property name="name" value="夏昌隆"/>
   </bean>
   <bean id="address" class="com.xcl.pojo.Address">
       <property name="address" value="北京"/>
   </bean>
</beans>

测试类:

public class MyTest {
   public static void main(String[] args) {
       ApplicationContext context=new ClassPathXmlApplicationContext("beans.xml");
       Student student = (Student) context.getBean("student");
       Address address = (Address) context.getBean("address");
       System.out.println(student.getAddress());
       System.out.println(address.getAddress());
  }
}

2.bean的作用域

1.单例模式(Spring默认机制)

<bean id="user" class="com.xcl.pojo.User" c:age="18" c:name="xcl" scope="singleton"

2.原型模式:每次从容器中get的时候,都会产生一个新对象

<bean id="user" class="com.xcl.pojo.User" scope="prototype"

3.其余的request,session,application,这些都只能在web开发中使用到

4.Bean得自动装配

  • 自动装配是Spring满足bean依赖的一种

  • Spring会在上下文中自动寻找

 

在Spring中会有三种自动装配的方式

  1. 在xml中显示的配置

  2. 在java中显示的配置

  3. 隐式的自动装配bean【重要】

4.1测试

    @Test
   public void test(){
       ApplicationContext context=new ClassPathXmlApplicationContext("beans.xml");
       People people = context.getBean("people", People.class);
       people.getCat().shout();
       people.getDog().shout();
  }

 

4.2自动装配

<bean id="dog" class="com.xcl.pojo.Dog"/>
<bean id="cat" class="com.xcl.pojo.Cat"/>
<!--byName会自动在容器上下文中查找和自己对象set方法后面的值相对应BeanID-->
<!--byType会自动在容器上下文中查找和自己对象类型属性相同的bean-->

<bean id="people" class="com.xcl.pojo.People" autowire="byType">
   <property name="name" value="夏昌隆" />
<!--   <property name="dog" ref="dog"/>-->
<!--   <property name="cat" ref="cat"/>-->
</bean>
<!--byType必须保证这个类型全局唯一
   byName必须保证set后面的对象名字跟ID后的名字相同-->
  • byname的时候,需要保证所有的bean的id唯一,并且这个bean需要和自动注入的属性的set方法的值一致

  • byType的时候,需要保证所有的bean的class唯一,并且这个bean需要和自动注入的属性的类型一致

4.3使用注解实现自动装配

要使用注解须知:

  1. 导入约束:context约束

  2. 配置注解支持:context:annotation-config/

<?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"
   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>

@Autowaired

直接在属性上使用即可!也可以在set方式上使用

使用Autowaired可以不用编写Set方法了,前提是你这个自动装置的属性在IOC(Spring)容器中存在,且符合名字byname

@Nullable  字段标记了这个注解,说明这个字段可以为null
public @interface Autowired {
  boolean required() default true;
}

测试代码

public class People {
   //如果显示定义了Autowired的required = false,说明这个对象可以为null,否则不允许为空
   @Autowired(required = false)
   private Cat cat;
   @Autowired
   private Dog dog;
   private String name;
}

如果@Autowired自动装配的环境比较复杂,自动装配无法通过一个注解【@Autowired】完成的时候,我们可以使用【@Qualifier(value="xxx")】去配置@Autowired的使用,指定一个唯一的bean对象注入

public class People {
   //如果显示定义了Autowired的required = false,说明这个对象可以为null,否则不允许为空
   @Autowired
   @Qualifier(value = "cat111")
   private Cat cat;
   @Autowired
   @Qualifier(value = "dog111")
   private Dog dog;
   private String name;
}

@Resource注解

public class People {
   
   @Resource(name = "dog111")
   private Dog dog;
   private String name;
}

小结:

@Resource和@Autowired的区别:

  • 都是用来自动装配的,都可以放在属性字段上

  • @Autowired通过bytype的方式实现,而且必须要求这个对象存在!

  • @Resource默认通过byname的方式实现,如果找不到名字,则通过bytype实现。如果两个都找不到的情况下,就报错!

  • 执行顺序不同: @Autowired通过bytype的方式实现,@Resource默认通过byname的方式实现

5.使用注解开发

在Spring4之后,要使用注解开发,必须要保证aop的包导入了

image-20221031161731426

在使用注解需要导入context约束,增加注解的支持

<?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"
   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>

1.bean

    <!--指定要扫描的包,这个包下的注解就会生效-->
   <context:component-scan base-package="com.xcl.pojo"/>
   <!--开启注解支持-->
   <context:annotation-config/>

 

2.属性如何注入

//等价于<bean id="user" class="com.xcl.pojo.user"/>
//@Component组件
@Component
public class User {
   //相当于<property name="name" value="昌隆">
   @Value("昌隆")
   public String name;
   public int age;

   public void setName(String name) {
       this.name = name;
  }
@Value("22")
   public void setAge(int age) {
       this.age = age;
  }
}

3.衍生的注解

@Component有几个衍生注解,我们在Web开发中会按照mvc三层架构分层

  • dao【@Repository】

  • service【@Service】

  • controller【@Controller】

    这四个注解功能都是一样的,都代表某个类注册到Spring中,装配Bean

4.自动装配置

-@Autowired:自动装配通过名字,类型
  如果Autowired不能唯一自动装配上属性,则需要同个@Qualifier(value="xxx")
  @Nullable字段标记了这个注解,说明这个字段可以为null
-@Resource:自动装配通过名字,类型

5.作用域

@Component
@Scope("singleton")
public class User {
   //相当于<property name="name" value="昌隆">
   @Value("昌隆")
   public String name;
   public int age;

   public void setName(String name) {
       this.name = name;
  }
@Value("22")
   public void setAge(int age) {
       this.age = age;
  }
}

6.小结

xml与注解:

  • xml更加万能,适合任何场所!维护更方便

  • 注解 不是自己的类是用不了,维护相对复杂

xml与注解最佳实践

  • xml用来管理bean

  • 注解只负责完成属性的注入

  • 让注解生效就必须开启注解的支持

    <!--指定要扫描的包,这个包下的注解就会生效-->
   <context:component-scan base-package="com.xcl"/>
   <!--开启注解支持-->
   <context:annotation-config/>

6.使用java的方式配置Spring

完全不需要使用Spring的XML配置了,全权交给Java来做

JavaConfig是Spring的一个子项目,在Spring4后,他成为了一个核心功能

实体类:

package com.xcl.pojo;

import org.springframework.beans.factory.annotation.Configurable;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

/**
* @author senko
* @date 2022/11/1 15:16
*/
@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 + '\'' +
               '}';
  }
}

配置文件:

package com.xcl.config;

import com.xcl.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代表这是一个配置类,就和我们之前看的bean.xml
@Configuration
@ComponentScan("com.xcl.pojo")
@Import(MyConfig2.class)
public class MyConfig {
   //注册一个Bean,就相当于我们之前写的一个bean标签
   //这个方法的名字,就相当于bean标签中的id属性
   //这个方法的返回值,就相当于bean标签中的class属性
   @Bean
   public User getUser(){
       return new User();//就是返回要注入到bean的对象
  }
}

 

测试类:

public class Test {
   public static void main(String[] args) {
       //如果完全使用了配置类方式去做,我们就只能
       ApplicationContext context = new AnnotationConfigApplicationContext(MyConfig.class);
       User getUser = context.getBean("getUser",User.class);
       System.out.println(getUser.getName());
  }
}

7.代理模式

  • 静态代理

  • 动态代理

7.1静态代理

角色分析:

  • 抽象角色:一般会使用接口或者抽象类来解决

  • 真实角色:被代理的角色

  • 代理角色:代理真实角色,代理真实角色后,一般会做一些附属操作

  • 客户:访问代理对象的人

步骤:

  1. 接口

    public interface Rent {
       public void rent();
    }

     

  2. 真实角色

    public class Host implements Rent{
       public void rent(){
           System.out.println("房东要租房子!");
      }
    }

     

  3. 代理角色

    public class Proxy implements Rent{
       private Host host;

       public Proxy() {
      }

       public Proxy(Host host) {
           this.host = host;
      }
       public void rent(){
           host.rent();
      }
       //看房
       public void seeHouse(){
           System.out.println("中介带你看房");
      }
       //签合同
       public void hetou(){
           System.out.println("中介带你签合同");
      }
       //收中介费
       public void fare(){
           System.out.println("收中介费");
      }
    }

     

  4. 客户端访问代理角色

    public class Client {
       public static void main(String[] args) {
           //房东要租房子
           Host host=new Host();
           //代理,中介帮房东租房子,但是,代理一般会有一些附属操作
           Proxy proxy = new Proxy(host);
           //不用面对房东,直接找中介租房即可
           proxy.rent();
      }
    }

     

代理模式好处:

  • 可以使真是角色的操作更加纯粹,不用去关注一些公众的业务

  • 公共业务就交给代理角色,实现了业务的分工

  • 公共业务发生扩展的时候,方便集中管理

缺点:

  • 一个真实角色就会产生一个代理角色;代码量增加,开发效率变低

7.2加深理解

UserService

public interface UserService {
   public void add();
   public void update();
   public void select();
   public void query();
}

UserServiceImpl

//真实对象
public class UserServiceImpl implements UserService{
   @Override
   public void add() {
       System.out.println("增加了一个用户");
  }

   @Override
   public void update() {
       System.out.println("修改");
  }

   @Override
   public void select() {
       System.out.println("删除");
  }

   @Override
   public void query() {
       System.out.println("查询");
  }
}

UserServiceProxy

public class UserServiceProxy implements UserService{
   private UserServiceImpl userService;

   public void setUserService(UserServiceImpl userService) {
       this.userService = userService;
  }

   @Override
   public void add() {
       log("add");
       userService.add();
  }

   @Override
   public void update() {
       log("update");
       userService.update();
  }

   @Override
   public void select() {
       log("select");
       userService.select();
  }

   @Override
   public void query() {
       log("query");
       userService.query();
  }
   public void log(String msg){
       System.out.println("[Debug]使用了"+msg+"方法");
  }
}

Client

public class Client {
   public static void main(String[] args) {
       UserServiceImpl userServiceImpl=new UserServiceImpl();
       UserServiceProxy userServiceProxy=new UserServiceProxy();
       userServiceProxy.setUserService(userServiceImpl);
       userServiceProxy.add();
  }
}

7.3.动态代理

  • 动态代理和静态代理角色一样

  • 动态代理类是动态生成的,不是我们写好的

  • 动态代理分为两大类:基于接口的动态代理;基于类的动态代理

    • 基于接口—JDK动态代理【我们使用的】

    • 基于类:cglib

    • java字节码实现:javasist

需要了解两个类:Proxy:代理; InvocationHandler:调用处理程序

动态代理好处:

  • 一个动态代理类代理的是一个接口,一般就是对应的一类业务

  • 一个动态代理类可以代理多个类,只要是实现了同一个接口即可

接口:UserService

public interface UserService {
   public void add();
   public void update();
   public void select();
   public void query();
}

接口实现类:UserServiceImpl

public class UserServiceImpl implements UserService {
   @Override
   public void add() {
       System.out.println("增加了一个用户");
  }

   @Override
   public void update() {
       System.out.println("修改");
  }

   @Override
   public void select() {
       System.out.println("删除");
  }

   @Override
   public void query() {
       System.out.println("查询");
  }
}

动态代理类:ProxyInvocationHandler

import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;

public class ProxyInvocatiobHandler 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+"方法");
  }
}

8.AOP

1.使用Spring实现AOP

【注意】使用AOP织入,需要导入一个依赖包

    <dependency>
       <groupId>org.aspectj</groupId>
       <artifactId>aspectjweaver</artifactId>
       <version>1.9.4</version>
   </dependency>

方式一:使用Spring的API接口

Log:

package com.xcl.service;
import org.springframework.aop.MethodBeforeAdvice;

public class Log implements MethodBeforeAdvice {
   //method:要执行的目标对象的方法
   //object:参数
   @Override
   public void before(Method method, Object[] objects, Object target) throws Throwable {
       System.out.println(target.getClass().getName()+"的"+method.getName()+"被执行了");
  }
}

AfterLog:

package com.xcl.service;

import org.springframework.aop.AfterReturningAdvice;

import java.lang.reflect.Method;

public class AfterLog implements AfterReturningAdvice {
   //returnValue:返回值
   @Override
   public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
       System.out.println("执行了"+method.getName()+"方法,返回结果为:"+returnValue);
  }
}

applicationContext:创建bean对象并实现切入

<?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
       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-->
<bean id="userService" class="com.xcl.service.UserServiceImpl"/>
<bean id="log" class="com.xcl.service.Log"/>
<bean id="afterLog" class="com.xcl.service.AfterLog"/>
<!--配置aop:需要导入aop的约束-->
   <aop:config>
<!--切入点:expression:表达式,excution(要执行的位置)-->
       <aop:pointcut id="pointcut" expression="execution(* com.xcl.service.UserServiceImpl.*(..))"/>
<!--执行环绕增强-->
       <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
   </aop:config>
</beans>

MyTest:

import com.xcl.service.UserService;
import com.xcl.service.UserServiceImpl;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MyTest {
   public static void main(String[] args) {
       ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
      //实现的是接口
       UserService userService = (UserService) context.getBean("userService");
       userService.add();
  }
}

方式二:自定义实现AOP【主要是切面定义】

Diy:前后日志自定义方法

package com.xcl.diy;

public class DiyPoint {
   public void before(){
       System.out.println("======方法执行前======");
  }
   public void after(){
       System.out.println("======方法执行后======");
  }
}

applicationContext:

<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-->
<bean id="userService" class="com.xcl.service.UserServiceImpl"/>

<bean id="diy" class="com.xcl.diy.DiyPoint"/>
   <!--配置aop:需要导入aop的约束-->
   <aop:config>
       <--!自定义切面,,ref要引用的类-->
<aop:aspect ref="diy">
           <!--切入点-->
      <aop:pointcut id="pointcut" expression="execution(* com.xcl.service.UserServiceImpl.*(..))"/>
          <!--通知-->
           <aop:before method="before" point-cut="pointcut"/>
           <aop:after method="after" point-cut="pointcut"/>
       </aop:aspect>
   </aop:config>
</beans>

Mytest

import com.xcl.service.UserService;
import com.xcl.service.UserServiceImpl;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MyTest {
   public static void main(String[] args) {
       ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
      //实现的是接口
       UserService userService = (UserService) context.getBean("userService");
       userService.add();
  }
}

方式三:使用注解实现

xml

    <!--方式三-->
   <bean id="annotationPointCut" class="com.xcl.diy.AnnotationPointCut"/>
<!--开启注解支持-->
   <aop:aspectj-autoproxy/>

AnnotationPointCut:

package com.xcl.diy;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.Signature;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;

//方式三:使用注解方式实现AOP
   @Aspect
public class AnnotationPointCut {
  @Before("execution(* com.xcl.service.UserServiceImpl.*(..))")
   public void bf(){
       System.out.println("======方法执行前======");
  }
   @After("execution(* com.xcl.service.UserServiceImpl.*(..))")
   public void af(){
       System.out.println("======方法执行后======");
  }
   @Around("execution(* com.xcl.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("环绕后");
  }
}

Test:同上

9.整合Mybatis

步骤:

  1. 导入相关jar包

    • junit

    • mybatis

    • mysql数据库

    • spring相关的

    • aop织入

    • mybatis-spring【new】

2.编写配置文件

3.测试

9.1回忆mybatis

  1. 编写实体类

    package com.xcl.pojo;
    import lombok.AllArgsConstructor;
    import lombok.Data;
    import lombok.NoArgsConstructor;

    @Data
    @AllArgsConstructor
    @NoArgsConstructor
    public class User {
       private int id;

       private String name;
       private String pwd;
    }

     

  2. 编写核心配置文件

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
       PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
       "http://mybatis.org/dtd/mybatis-3-config.dtd">
<!--configuration核心配置文件
连接数据库-->
<configuration>
   <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&amp;useUnicode=true&amp;characterEncoding=utf-8"/>
               <property name="username" value="root"/>
               <property name="password" value="root"/>
           </dataSource>
       </environment>
   </environments>
   <!--每一个Mapper.xml都需要在Mybatis核心配置文件中注册-->
   <mappers>
       <mapper resource="com/xcl/Mapper/UserMapper.xml"/>
   </mappers>
</configuration>

3.编写接口

package com.xcl.Mapper;
import com.xcl.pojo.User;
import java.util.List;

public interface UserMapper {
    List<User> selectUser();//查询用户
}

 

4.编写Mapper.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
       PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
       "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<mapper namespace="com.xcl.Mapper.UserMapper">

   <select id="selectUser" resultType="com.xcl.pojo.User">
      select * from mybatis.user
   </select>
</mapper>

5.测试

import com.xcl.Mapper.UserMapper;
import com.xcl.pojo.User;
import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;

import javax.annotation.Resource;
import java.io.IOException;
import java.io.InputStream;
import java.util.List;

public class Test {
   @org.junit.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);
      }
  }
}

9.2.Mybatis-spring

  1. 编写数据源配置

    <!--DataSource :使用Spring的数据源替换Mybatis的配置  -->
       <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&amp;useUnicode=true&amp;characterEncoding=utf-8"/>
           <property name="username" value="root"/>
           <property name="password" value="root"/>
       </bean>
    <!--sqlSessionFactory-->
       <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
           <property name="dataSource" ref="datasource"/>
    <!--绑定Mybatis-->
           <property name="configLocation" value="classpath:mybatis-config.xml"/>
    <!--省略注册-->
           <property name="mapperLocations" value="classpath:com/xcl/Mapper/UserMapper.xml"/>
        </bean>

       <bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
    <!--只能使用构造器注入sqlSessionFactory,因为它没有set方法-->
           <constructor-arg index="0" ref="sqlSessionFactory"/>
       </bean>

    </beans>

     

  2. sqlSessionFactory

  3. sqlSessionTemplate

  4. 需要给自己写的实现类注入到Spring中

    applicationContext.xml:

      <import resource="spring-dao.xml"/>

       <bean id="userMapper" class="com.xcl.Mapper.UserMapperImpl">
           <property name="sqlSession" ref="sqlSession"/>
       </bean>

     

  5. 测试

    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);
      }
  }
}

10.声明式事务

1.回顾事务

  • 把一组业务当成一个业务来做,要么都成功,要么都失败

  • 事务在项目开发中,涉及到数据一致性的问题

  • 确保完整性和一致性

 

事务ACID原则:

  • 原子性

  • 一致性

  • 隔离性

    • 多个业务可能操作同一个资源,防止数据损坏

  • 持久性

    • 事务一旦提交,无论系统发生什么问题,结果都不会在被影响,被持久化的写道存储器中

2.spring中的事务管理

  • 声明式事务

  • 编程式事务:需要在代码中进行事务的管理

    声明式事务

<!--配置声明式事务-->
   <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
       <property name="dataSource" ref="dataSource"/>
<!--       <constructor-arg ref="dataSource"/>-->
   </bean>
<!--结合AOP实现事务的植入-->
<!--配置事务通知-->
   <tx:advice id="txAdvice" transaction-manager="transactionManager">
<!--给哪些方法配置事务-->
<!--配置事务的传播特性:new propagation=-->
       <tx:attributes>
           <tx:method name="*" propagation="REQUIRED"/>
       </tx:attributes>
   </tx:advice>
<!--配置事务切入-->
   <aop:config>
       <aop:pointcut id="txPointCut" expression="execution(* com.xcl.mapper1.*.*(..))"/>
       <aop:advisor advice-ref="txAdvice" pointcut-ref="txPointCut"/>
   </aop:config>
 

 

标签:study,springframework,public,class,import,mybatis,org,void
From: https://www.cnblogs.com/xclxcl/p/16875155.html

相关文章