Mybatis 代码生成器实现

mybatis 代码生成器,帮助我们快速代码开发。

实现过程:

1. pom依赖:

        

       

           

                org.springframework.boot

                spring-boot-maven-plugin

               

               

                    true

               

           

           

           

                org.mybatis.generator

                mybatis-generator-maven-plugin

                1.3.7

           

       

       

       

           

                src/main/resources

                true

               

                    generatorConfig.xml

               

           

           

           

                src/main/resources

                false

               

                    generatorConfig.xml

               

           

       

   


2. resource根目录下  generatorConfig.xml 配置文件:

   

       

       

       

       

       

       

       

       

你可能感兴趣的:(Mybatis 代码生成器实现)