由表生成代码:mybatis-generator入门

application.properties

## mapper xml 文件地址
mybatis.mapper-locations=classpath*:mapper/*Mapper.xml
##数据库url
spring.datasource.url=jdbc:mysql://localhost:3306/shiro?characterEncoding=utf8&useSSL=false
##数据库用户名
spring.datasource.username=root
##数据库密码
spring.datasource.password=1234
##数据库驱动
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
#Mybatis Generator configuration
#dao类和实体类的位置
mybatis.project =src/main/java
#mapper文件的位置
mybatis.resources=src/main/resources

generatorConfig.xml





    
    
    
    
    

    
    
    
        
        
        
        
        
        
        

        
        
        
        
        

        

        
        
            
             
            
        

        
        
        
        
            
            
        

        
        
            
            
        
        
        
            
        
        
        
            
        
        
        
            
            
        

pom.xml加入插件

        
            org.mybatis.generator
            mybatis-generator-maven-plugin
            1.3.2
            
                
                    mybatis-generator
                    deploy
                    
                        generate
                    
                
            
            
                
                src/main/resources/mybatis-generator/generatorConfig.xml
                true
                true
            
            
                
                    mysql
                    mysql-connector-java
                    5.1.46
                
                
                    org.mybatis.generator
                    mybatis-generator-core
                    1.3.2
                
            
        
点击插件即可生成代码
由表生成代码:mybatis-generator入门_第1张图片

个人网站

你可能感兴趣的:(springboot)