MyBatis与Spring框架整合

1、创建一个Java工程mybatis

2、导入jar包,并Bulid Path

MyBatis与Spring框架整合_第1张图片

3、为该工程创建Spring配置文件,并在Spring配置文件中添加如下配置信息:




 
	
		
		
		
		
	
	
	
		
		
		
	
	
	
 

注解:

  • :配置数据库连接信息
  • :配置数据库驱动
  • :配置数据库路径
  • :配置数据库用户名
  • :配置数据库密码
  • :创建SqlSessionFactory对象 
  • :指定数据源,此时mybatis-config.xml中environments标签将不再起作用。dataSource属性必须配置,即MyBatis和Spring整合后,将不再使用mybatis-config.xml全局配置文件中数据库配置 
  • :指定全局配置文件位置 
  • :指定XML 映射文件位置,此时可以将mybatis-config.xml文件mappers标签删掉;“*”是通配符,表示匹配sql文件夹下的所有.xml文件
  • :扫描指定包及其子包下的所有接口并生成相应的代理对象;base-package:指定接口所在的包名

4、在com.zzu.test包创建Test类,代码如下:

package com.zzu.test;
 
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.zzu.area.IAreaDao;
 
public class Test {
 
	public static void main(String[] args) throws Exception {
 
		ClassPathXmlApplicationContext applicationContext=new ClassPathXmlApplicationContext("application.xml");
		IAreaDao areaDao =applicationContext.getBean(IAreaDao.class);
		System.out.println(areaDao.getClass().getName());
	}
}

执行结果:

com.sun.proxy.$Proxy8

你可能感兴趣的:(MyBatis与Spring框架整合)