Spring boot篇 myibatis 整合使用

实体类构建使用 generator
Spring boot篇 myibatis 整合使用_第1张图片
generatorConfig.xml 配置文件




    
    

    
        
            
            
        

        
        
        

        
            
        

        
        
            
            
        

        
        
            
        

        
        
            
        

        
        

pom.xml中添加

    
    
        com.oracle
        ojdbc7
        12.1.0
    
	
     
        
            org.mybatis.generator
            mybatis-generator-maven-plugin
            1.3.5
            
                true
                true
            
        
   

双击执行 (会生成 实体类 xml配置文件 与dao文件 )
Spring boot篇 myibatis 整合使用_第2张图片

application.properties 配置数据库

#数据库
spring.datasource.driver-class-name=oracle.jdbc.driver.OracleDriver
spring.datasource.url=jdbc:oracle:thin:@xx.xxx.xxx.xxxx:1521:orcl
spring.datasource.username=xxx
spring.datasource.password=xxx

Mybatis 文件扫描位置

mybatis.type-aliases-package=com.xxxx.mall.domain
mybatis.mapper-locations=classpath:/mapper/*.xml

MallWebApplication 配置扫描的

@MapperScan(basePackages = {“com.xxxx.mall.dao”})
@SpringBootApplication
public class MallWebApplication {

public static void main(String[] args) {
    SpringApplication.run(MallWebApplication.class, args);

使用查询数据
@Resource
private MallUserAddressMapper userAddressMapper;

你可能感兴趣的:(SpringBoot)