zoukankan      html  css  js  c++  java
  • 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));
    

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

  • 相关阅读:
    Atitit.异步编程技术原理与实践attilax总结
    AjaxToolKit之Rating控件的使用(http://www.soaspx.com/dotnet/ajax/ajaxtech/ajaxtech_20091021_1219.html)
    JavaScript初学指南
    javascript泛型集合类(转)
    HTTP 错误 404.2 Not Found 由于 Web 服务器上的“ISAPI 和 CGI 限制”列表设置,无法提供您请求的页面
    IIS连接oralce数据库时 提示“System.Data.OracleClient 需要 Oracle 客户端软件 8.1.7 或更高版本”
    配置错误定义了重复的“system.web.extensions/scripting/scriptResourceHandler” 解决办法
    self.location.href的具体用法(转)
    CSS Overflow属性详解(转)
    .net中使用showModalDialog打开模式窗口,在后台代码中使用Response.Write()会弹出新页面
  • 原文地址:https://www.cnblogs.com/pengsn/p/13560907.html
Copyright © 2011-2022 走看看