创建maven项目
加入依赖包
spring相关包: spring-core,spring-beans,spring-context
AOP相关包:spring-aop,spring-aspects,aopalliance
mybatis相关包:mybatis
数据库相关包:spring-jdbc
数据库驱动,数据库连接池(这里用的是druid)
mybatis与spring的整合包 :mybatis-spring
默认的额mavenJDK版本为1.5在需要的时候需要对jdk进行升级
使用编译插件:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
使用mybatis逆向工程生成dao层、pojo层及Mapper文件
详情参见Mybaits逆向工程
加入数据库连接相关的外部配置文件(.properties)
db.properties:
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/*?characterEncoding=utf-8
jdbc.username=root
jdbc.password=**
加入mybatis主配置文件,内容可以不写
mybatis-config.xml:
<?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>
配置整合文件(spring-dao.xml)
创建spring-dao.xml:在src/main/resources下new 一个Spring Bean Configuration File文件
需要选择命名空间context
spring-dao.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"
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-4.3.xsd">
<!-- 配置扫描bean(注解) -->
<!-- 引入外部配置文件 -->
<!-- 配置数据源,使用durid连接池 -->
<!-- sqlsessionfactory创建对象的配置 -->
<!-- mapper扫描包的配置(mapper扫描器) -->
</beans>
配置扫描器,自动扫描bean(我使用的是注解)
<context:component-scan base-package="day0917.services"></context:component-scan>
引入外部配置文件
<context:property-placeholder location="db.properties"/>
配置数据源,使用durid连接池
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
<property name="driverClassName" value="${jdbc.driver}" />
<property name="url" value="${jdbc.url}" />
<property name="username" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />
<!-- 配置初始化大小、最小、最大 -->
<property name="initialSize" value="1" />
<property name="minIdle" value="1" />
<property name="maxActive" value="10" />
<!-- 配置获取连接等待超时的时间 -->
<property name="maxWait" value="10000" />
<!-- 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 -->
<property name="timeBetweenEvictionRunsMillis" value="60000" />
<!-- 配置一个连接在池中最小生存的时间,单位是毫秒 -->
<property name="minEvictableIdleTimeMillis" value="300000" />
<property name="testWhileIdle" value="true" />
<!-- 这里建议配置为TRUE,防止取到的连接不可用 -->
<property name="testOnBorrow" value="true" />
<property name="testOnReturn" value="false" />
<!-- 打开PSCache,并且指定每个连接上PSCache的大小 -->
<property name="poolPreparedStatements" value="true" />
<property name="maxPoolPreparedStatementPerConnectionSize" value="20" />
<!-- 这里配置提交方式,默认就是TRUE,可以不用配置 -->
<property name="defaultAutoCommit" value="true" />
<!-- 验证连接有效与否的SQL,不同的数据配置不同 -->
<!-- <property name="validationQuery" value="select 1 " />
<property name="filters" value="stat" /> -->
</bean>
sqlsessionfactory创建对象的配置
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<!-- 数据库连接池 -->
<property name="dataSource" ref="dataSource" />
<!-- 加载mybatis的全局配置文件,虽然这个全局配置文件是空的,但是这个全局配置文件是必不可少的 -->
<property name="configLocation" value="classpath:mybatis-config.xml" />
<!-- 扫描mapper映射文件 -->
<property name="mapperLocations" value="classpath:mapper/*.xml" />
</bean>
mapper扫描包的配置(mapper扫描器)
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="day0917.dao" />
</bean>
编写service层用于测试
此处我自己写了一个statement在mapper里
<!-- 查询列表 -->
<select id="selectList" resultMap="BaseResultMap" parameterType="day0917.pojo.SysRole">
select roleid, rolename, roledesc, rolestate from sysrole
<where>
<if test="rolestate!=null and rolestate!=-1">
and rolestate=#{rolestate}
</if>
<if test="rolename!=null and rolename!=''">
and rolename like '%${rolename}%'
</if>
</where>
</select>
//service接口
public interface SysRoleService {
/*
* 查询列表
* 方法名必须与mapper中statement的id值一致
* */
List<SysRole> selectList(SysRole role);
}
//采用注解的方式将实例类的bean放入ioc容器中
@Service("sysRoleService")
public class SysRoleServiceImpl implements SysRoleService{
//采用自动装配的方式获取mapper的动态代理对象
@Autowired
private SysRoleMapper dao;
/*查询列表*/
public List<SysRole> selectList(SysRole role) {
return dao.selectList(role);
}
}
//测试类
public class Main1 {
public static void main(String[] args) {
ApplicationContext ac=new ClassPathXmlApplicationContext("spring-dao.xml");
SysRole role=new SysRole();
role.setRolename("员");
SysRoleService service=(SysRoleServiceImpl) ac.getBean("sysRoleService");
List<SysRole> list=service.selectList(role);
System.out.println(list);
}
}
over