javaee—spring mybatis整合

所需要的jar包

javaee—spring mybatis整合_第1张图片javaee—spring mybatis整合_第2张图片

配置文件:

           javaee—spring mybatis整合_第3张图片

一:

把mybatis做的连接数据库的工作交给spring做了

mybatis做的工作就是管理日志文件

接下来就是beans,加载资源文件,使用spring自带的占位符替换功能

给spring-beansjar包中org.springframework.beans.factory.config包中的PropertyPlaceholderConfigurer注入值,之后有更多的配置文件也可以写到list标签中,方便多个配置文件加载,连接了数据库


		
		
		
		
		
		
			
				classpath:db.properties
			
		
	

二:

连接数据源 (四种方法):一定要注意配置属性时候的值 propert 的name每种连接方式是不一样的

1 可以用自带方法配置  给spring-jdbc包中org.springframework.jdbc.datasource的DriverManagerDataSource类注入值


		
		
		
		
2 可以使用c3p0连接池  c3p0jar包中com.mchange.v2.c3p0中的DriverManagerDataSource

        
	
	
	
3 dbcp  commons-dbcp2-2.1.1.jar中的org.apache.commons.dbcp2.BasicDataSource

	       
		
		
		

4 阿里巴巴数据源(现在比较火) 给druid-1.0.20.jar中的com.alibaba.druid.pool中的DruidDataSource注入值


	   
		
		
		
	

三:

配置spring和mybatis的连接,用bean配置的方式生成sqlsessionfactoty 在mybatis-spring连接的jar包中,省去了写单独用mybatis时候写的得到sqlsession的方法

   
	
		
		
			
	

四:

配置mapper映射,方法也在mybatis-springjar包中


		
	
	
		

到此dao(数据层)需要的配置就全部配好了

直接调用dao层的是service层service层处理的是业务逻辑

spring中的bean用于注入属性值,可以用context中的方法根据类中注解自动扫描 包中的类和属性

 

类中的注解重要的五种:

1 @component:  可以使用注解扫描spring中的bean,它是一个泛化概念,可以表示任何层,如果这个类不属于数据层(dao),业务逻辑层(service),控制层(controller),就可以用此注解

2 @repository:  用于数据访问(dao层)

3 @service:  用于service层

4 @controller:  用于controller层 

5 @resource:  按照bean的实例名装配,相当于配置property ,按照name(属性名),type(属性类型)装配

使用方法:

package lu.nynu.service;

import javax.annotation.Resource;

import lu.nynu.mapper.CustomerMapper;
import lu.nynu.po.Customer;

import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

@Service//类上标注是那一层
public class CustomerService {
	@Resource//需要实例化的对象
	CustomerMapper customerMapper;
	
	public Customer selectCustomerById(Integer id){
		return customerMapper.selectCustomerById(id);
	}
	
	public Integer insertCustomer(Customer customer){
		int i=customerMapper.insertCustomer(customer);
		int j=3/0;
		return i;
	}
}

因为我的xml文件是分开写的,如果要导入内的配置文件

这样直接走text方法就得到值了

package lu.nynu.test;

import javax.annotation.Resource;

import lu.nynu.po.Customer;
import lu.nynu.service.CustomerService;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@RunWith(SpringJUnit4ClassRunner.class)//junit测试方法,需要导入junit4jar包
@ContextConfiguration("classpath:beans.xml")
// 加载spring配置文件
public class Test1 {
	@Resource
	CustomerService customerService;

	@Test
	public void test1() {
		System.out.println(customerService.selectCustomerById(1));
	}
	
	@Test
	public void test2() {
		Customer customer=new Customer();
		customer.setUsername("张123");
		customer.setJobs("student");
		customer.setPhone("12345");
		
		customerService.insertCustomer(customer);
	}
}





你可能感兴趣的:(java)