MyBatis和Spring框架整合

关于Sping与MyBatis的整合,通过Spring实例化Bean,然后调用实例对象中的查询方法来执行MyBatis映射文件中的SQL语句,如果能够正确查询出数据库中的数据,我们就认为已经整合好,具体实现流程见下图

第一步,src目录下创建db.properties文件,配置数据库的基本四项

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/mybatis
jdbc.username=root
jdbc.password=root
jdbc.maxTotal=30
jdbc.maxIdle=10     
jdbc.initialSize=5   

第二步,src目录下创建Spring的配置文件 ,applicationContext.xml

  1. 读取db.properties文件的配置
  2. 配置数据源
  3. 配置事务管理器并开启了事务注解
  4. 配置MyBatis工厂与Spring整合






    
    


    
	
        
        
        
        
        
        
        
        
        
        
        
        
        
        
	


	 
	
		
		


    
	


    


    
         
         
         
   		
   
   


以下不在项目最开始的文件中,根据项目后期的要求自行添加
----开始-----

   
	

	
	     
	
-----结束----



	
	     
	
	

	 
	
	

第三步,以及MyBatis的配置文件,由于Spring的配置文件中已经配置了数据源,所以在这里就不需要在配置,


    
    
        
    
    
	 
       
       
	   
       
	

第四步,创建log4j.properties文件,直接复制就行

# Global logging configuration
log4j.rootLogger=ERROR, stdout
# MyBatis logging configuration...
log4j.logger.com.itheima=DEBUG
# Console output...
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m%n

第五步,实现持久层

在src目录下,创建一个po包,并创建持久层Customer

public class Customer {
	private Integer id;       // 涓婚敭id
	private String username; // 瀹㈡埛鍚嶇О
	private String jobs;      // 鑱屼笟
	private String phone;     // 鐢佃瘽
	public Integer getId() {
		return id;
	}
	public void setId(Integer id) {
		this.id = id;
	}
	public String getUsername() {
		return username;
	}
	public void setUsername(String username) {
		this.username = username;
	}
	public String getJobs() {
		return jobs;
	}
	public void setJobs(String jobs) {
		this.jobs = jobs;
	}
	public String getPhone() {
		return phone;
	}
	public void setPhone(String phone) {
		this.phone = phone;
	}
	@Override
	public String toString() {
		return "Customer [id=" + id + ", username=" + username + 
				       ", jobs=" + jobs + ", phone=" + phone + "]";
	}
}

 在创建一个映射文件CustomerMapper.xml,该文件编写根据id查询客户信息的映射语句




	
	

第六步,实现Dao层

src下创建dao包,先创建一个接口CustomerDao,在接口声明一个findCustomerById的方法

import com.itheima.po.Customer;
public interface CustomerDao {
	// 通过id查询客户
	public Customer findCustomerById(Integer id);
}

第七步,创建一个dao.impl包,创建CustomerDao接口的实现类CustomerDaoImpl

import org.mybatis.spring.support.SqlSessionDaoSupport;
import com.itheima.dao.CustomerDao;
import com.itheima.po.Customer;
public class CustomerDaoImpl 
                      extends SqlSessionDaoSupport implements CustomerDao {

SqlSessionDaoSupport类在使用时需要一个SqlSessionFactory或一个SqlSessionTemplate对象,所以需要Spring在applicationContext.xml中注入一个上述的对象,这样子类可以通过调用SqlSessionDaoSupprot类的getSqlSession方法获取SqlSession对象,并使用其方法

	// 通过id查询客户
	public Customer findCustomerById(Integer id) {
         	return this.getSqlSession().selectOne("com.itheima.po"
				      + ".CustomerMapper.findCustomerById", id);
	}
}

第八步,整合测试

public class DaoTest {
	@Test
	public void findCustomerByIdDaoTest(){
		ApplicationContext act = 
		    new ClassPathXmlApplicationContext("applicationContext.xml");
          // 根据容器中Bean的id来获取指定的Bean
	     CustomerDao customerDao = 
                              (CustomerDao) act.getBean("customerDao");
//	     CustomerDao customerDao = act.getBean(CustomerDao.class);
		 Customer customer = customerDao.findCustomerById(1);
		 System.out.println(customer);
	}
}

 

你可能感兴趣的:(javaweb)