• spring整合mybatis干货分享


    maven依赖

    <dependency>
    	<groupId>org.mybatis</groupId>
    	<artifactId>mybatis</artifactId>
    	<version>3.4.0</version>
    </dependency>
    <dependency>
    	<groupId>org.mybatis</groupId>
    	<artifactId>mybatis-spring</artifactId>
    	<version>2.0.0</version>
    </dependency>
    

    配置文件

    <?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"
           xmlns:context="http://www.springframework.org/schema/context"
           xmlns:tx="http://www.springframework.org/schema/tx"
           xsi:schemaLocation="http://www.springframework.org/schema/beans
                    http://www.springframework.org/schema/beans/spring-beans-4.3.xsd
                    http://www.springframework.org/schema/context
                    http://www.springframework.org/schema/context/spring-context-4.3.xsd
                    http://www.springframework.org/schema/aop
                    http://www.springframework.org/schema/aop/spring-aop-4.3.xsd">
        <!-- 扫描包 -->
        <context:component-scan base-package="dbinfo.jdbc.dao" />
        
        <!-- 引入属性文件,数据配置信息文件,引入后就可以通过EL表达式获取该文件的内容 -->
        <context:property-placeholder location="classpath*:jdbc.properties" />
    
        <!-- 指定数据源 -->
        <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init"
              destroy-method="close">
            <!-- 基本属性 url、user、password -->
            <property name="driverClassName" value="com.mysql.cj.jdbc.Driver" />
            <property name="url" value="jdbc:mysql://112.19.82.122:3306/xxx?useunicode=true&amp;characterEncoding=utf8" />
            <property name="username" value="root" />
            <property name="password" value="123456" />
            <!-- 配置监控统计拦截的filters -->
            <property name="filters" value="stat" />
            <!-- 配置初始化大小、最小、最大 -->
            <property name="maxActive" value="20" />
            <property name="initialSize" value="1" />
            <property name="minIdle" value="1" />
    
            <!-- 配置获取连接等待超时的时间 -->
            <property name="maxWait" value="60000" />
    
            <!-- 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 -->
            <property name="timeBetweenEvictionRunsMillis" value="60000" />
    
            <!-- 配置一个连接在池中最小生存的时间,单位是毫秒 -->
            <property name="minEvictableIdleTimeMillis" value="300000" />
    
            <property name="testWhileIdle" value="true" />
            <property name="testOnBorrow" value="false" />
            <property name="testOnReturn" value="false" />
    
            <!-- 打开PSCache,并且指定每个连接上PSCache的大小 -->
            <property name="poolPreparedStatements" value="true" />
            <property name="maxOpenPreparedStatements" value="20" />
        </bean>
    	
    	<!-- 会话工厂 -->
       	<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
       		<property name="dataSource" ref="dataSource"></property>
       		<property name="mapperLocations" value="classpath*:**/mapper/*Mapper.xml"></property>
       	</bean>
        
        <!-- 自动扫描对象关系映射 -->
        <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        	<property name="sqlSessionFactory" ref="sqlSessionFactory"></property>
        	<property name="basePackage" value="dbinfo.jdbc.dao"></property>
        </bean>
        
    </beans>
    

    开发定义

    • 接口定义
    @Mapper
    public interface IUserDao {
    	
        public List<User> query();
    	
    }
    
    • Mapper.xml 关系映射文件
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
    <!--命名空间应该是对应接口的包名+接口名 -->
    <mapper namespace="dbinfo.jdbc.dao.IUserDao">
    	
    	<!-- 查询用户 -->
    	<select id="query" resultType="dbinfo.jdbc.pojo.User">
    		select * 
    		from tb_user
    		limit 10
    	</select>
    	
    </mapper>
    
    • 实体类
    package dbinfo.jdbc.pojo;
    
    public class User {
    
    	private String id;
    
    	private String court_code;
    
    	private String user_name;
    
    	public String getId() {
    		return id;
    	}
    
    	public void setId(String id) {
    		this.id = id;
    	}
    
    	public String getCourt_code() {
    		return court_code;
    	}
    
    	public void setCourt_code(String court_code) {
    		this.court_code = court_code;
    	}
    
    	public String getUser_name() {
    		return user_name;
    	}
    
    	public void setUser_name(String user_name) {
    		this.user_name = user_name;
    	}
    
    }
    

    测试

    ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext2.xml");
    IUserDao userDao = applicationContext.getBean("IUserDao", IUserDao.class);
    List<User> query = userDao.query();
    System.out.println( JSON.toJSONString(query));
    

    如果觉得文章对您有用,请点下推荐。您的支持将鼓励我继续创作!

  • 相关阅读:
    notepad++中快速插入当前时间方法
    ICE学习笔记一----运行官方的java版demo程序
    使用filter统一设置编码
    hibernate学习笔记之四 Hibernate的增删改查
    hibernate学习笔记之三 持久化的三种状态
    hibernate学习笔记之二 基本环境搭建
    How To Install Proxmox Nested on VMware ESXi (Full Support OpenVZ & KVM)
    struts1四:常用标签
    struts1三:struts1的实现原理
    struts1二:基本环境搭建
  • 原文地址:https://www.cnblogs.com/pengsn/p/13560907.html
Copyright © 2020-2023  润新知