`
zqb666kkk
  • 浏览: 732493 次
  • 性别: Icon_minigender_1
  • 来自: 宁波
社区版块
存档分类
最新评论

mybatis自动生成代码

 
阅读更多
网上找了很多 折腾了挺久 ,由于 maven项目里 没有 建立 src/main/resources这个目录网上找的生成方法都报错 ,所以 如果你是maven方式生成 不管有没有用这个目录都要建下 才能顺利往下走
我用的 是sqlserver2014

maven 引入 自动生成插件
...
	<plugin>
    <groupId>org.mybatis.generator</groupId>
    <artifactId>mybatis-generator-maven-plugin</artifactId>
    <version>1.3.2</version>
    <configuration>
        <configurationFile>src/resource/generatorConfig.xml</configurationFile>
        <verbose>true</verbose>
        <overwrite>true</overwrite>
    </configuration>
    <executions>
        <execution>
            <id>Generate MyBatis Artifacts</id>
            <goals>
                <goal>generate</goal>
            </goals>
        </execution>
    </executions>
    <dependencies>
        <dependency>
            <groupId>org.mybatis.generator</groupId>
            <artifactId>mybatis-generator-core</artifactId>
            <version>1.3.2</version>
        </dependency>
    </dependencies>
</plugin>
        </plugins>
        <pluginManagement>
        	<plugins>
        		<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
        		<plugin>
        			<groupId>org.eclipse.m2e</groupId>
        			<artifactId>lifecycle-mapping</artifactId>
        			<version>1.0.0</version>
        			<configuration>
        				<lifecycleMappingMetadata>
        					<pluginExecutions>
        						<pluginExecution>
        							<pluginExecutionFilter>
        								<groupId>
        									org.mybatis.generator
        								</groupId>
        								<artifactId>
        									mybatis-generator-maven-plugin
        								</artifactId>
        								<versionRange>
        									[1.3.2,)
        								</versionRange>
        								<goals>
        									<goal>generate</goal>
        								</goals>
        							</pluginExecutionFilter>
        							<action>
        								<ignore></ignore>
        							</action>
        						</pluginExecution>
        					</pluginExecutions>
        				</lifecycleMappingMetadata>
        			</configuration>
        		</plugin>
        	</plugins>


配置文件generatorConfig.xml:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE generatorConfiguration
        PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
        "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">

<generatorConfiguration>
    <classPathEntry
            location="E:/jar/javalianjiesqlserver2008/sqljdbc4.jar"/>
    <context id="my" targetRuntime="MyBatis3">
        <commentGenerator>
            <property name="suppressDate" value="false"/>
            <property name="suppressAllComments" value="true"/>
        </commentGenerator>

        <jdbcConnection driverClass="com.microsoft.sqlserver.jdbc.SQLServerDriver"
                        connectionURL="填写自己本地数据库的jdbc url" userId="test"
                        password="test"/>

        <javaModelGenerator targetPackage="com.springapp.mvc.model"
                            targetProject="E:/zqb/mybatis/java">
            <property name="enableSubPackages" value="true"/>
            <property name="trimStrings" value="true"/>
        </javaModelGenerator>

        <sqlMapGenerator targetPackage="com.springapp.mvc.model"
                         targetProject="E:/zqb/mybatis/java">
            <property name="enableSubPackages" value="true"/>
        </sqlMapGenerator>

        <javaClientGenerator targetPackage="com.springapp.mvc.model"
                             targetProject="E:/zqb/mybatis/java" type="XMLMAPPER">
            <property name="enableSubPackages" value="true"/>
        </javaClientGenerator>

        <!--<table tableName="T_FEE_AGTBILL" domainObjectName="FeeAgentBill"
               enableCountByExample="false" enableUpdateByExample="false"
               enableDeleteByExample="false" enableSelectByExample="false"
               selectByExampleQueryId="false"/>-->

        <table tableName="Account" domainObjectName="Account"
               enableCountByExample="true" enableUpdateByExample="true"
               enableDeleteByExample="true" enableSelectByExample="true"
               selectByExampleQueryId="true">
            <!--<columnRenamingRule searchString="^D_"
                                replaceString=""/>-->
        </table>

    </context>
</generatorConfiguration>



最后按照这个生成就好了

生成效果图 :


  • 大小: 66.7 KB
  • 大小: 16.9 KB
0
1
分享到:
评论
1 楼 yin_bp 2016-01-08  
对比一下bboss的自动代码生成框架:
在线试用:http://gencode.bbossgroups.com/
工具使用指南:http://yin-bp.iteye.com/blog/2256948

相关推荐

    Mybatis 自动生成代码

    它能够根据数据库中的表自动生成对应的Java实体类、Mapper接口及XML配置文件,极大地提高了开发效率。在理解MBG的工作原理和使用方法之前,我们先来了解一下MyBatis框架。MyBatis是一个优秀的持久层框架,它支持定制...

    mybatis自动生成代码和配置文件

    在标题和描述中提到的“mybatis自动生成代码和配置文件”是一个常见的开发需求,主要是为了提高开发效率和减少错误。这个过程通常涉及到MyBatis的逆向工程(Reverse Engineering)工具或者使用一些第三方插件,如...

    eclipse mybatis自动生成代码工具

    Eclipse Mybatis自动生成代码工具是一款非常实用的开发辅助软件,尤其对于那些使用Mybatis作为持久层框架的Java开发者来说,它可以显著提升开发效率。Mybatis Generator(简称Generator)是这个工具的核心,它允许...

    mybatis自动生成代码工具

    在开发过程中,MyBatis自动生成代码工具可以极大地提高开发效率,减少手动编写重复的Mapper接口、Mapper XML配置文件以及POJO(Plain Old Java Object)类的工作量。这款工具可以根据数据库中的单表自动生成对应的...

    mybatis 自动生成代码的工具

    一旦配置完成,运行 MBG 工具即可根据配置自动生成代码。 在实际使用中,MBG 的配置文件通常包含以下几部分: 1. **数据库连接信息**:包括 JDBC 驱动类、URL、用户名和密码,用于建立与数据库的连接。 2. **生成...

    mybatis自动生成代码jar包

    这个“mybatis自动生成代码jar包”很可能是一个工具,能够帮助开发者自动化生成MyBatis的相关代码,提高开发效率,减少手动编写SQL和映射文件的工作量。 在Java开发中,MyBatis的自动代码生成器(MyBatis Generator...

    SpringBootDemo2(boot整合thymeleaf,mybatis,druid,mybatis自动生成代码)

    使用SpringBoot下的WebMvc框架(SpringBoot整合thymeleaf,mybatis,druid,mybatis自动生成代码,springbootDemo2付springboot整合Thymeleaf,官方推荐使用Thymeleaf,不建议使用JSP)

    mybatis自动生成代码和命令

    通过以上步骤,MyBatis Generator会根据配置文件中的设置自动生成对应的Java实体类、Mapper接口、Mapper XML文件和服务层代码。这大大减少了手动编写这些代码的工作量,使开发者能更专注于业务逻辑的实现,提高开发...

    myBatis自动生成代码案例

    MBG是一个能够根据数据库表结构自动生成Java源代码和XML配置文件的工具。它可以生成Model对象、Mapper接口和XML配置文件,以及Service和DAO实现类等,这些代码通常用于处理数据库的CRUD(Create、Read、Update、...

    Mybatis自动生成代码

    Mybatis自动生成代码 MBG DefaultShellCallback callback = new DefaultShellCallback(overwrite); //创建 MBG MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, callback, warnings); //执行...

    mybatis 自动生成代码工具

    它能够帮助开发者自动生成PO(Plain Old Java Object,简单旧式Java对象)、DAO(Data Access Object,数据访问对象)以及对应的XML映射文件,极大地提升了开发效率,减少了手动编写重复性代码的工作量。 在MyBatis...

    mybatis代码自动生成

    描述中提到的"mybatis自动生成代码的项目,里面有详细的步骤说明,简单易懂",意味着该项目不仅提供了MBG的配置和使用,还附带了清晰的教程,帮助用户理解如何配置Generator配置文件,如何执行生成操作,以及生成的...

    mybatis自动生成代码配置文件

    mybatis自动生成代码配置文件,通过配置文件详细讲解以生成各层代码。

    mysql+mybatis自动生成代码工具

    MySQL+MyBatis自动生成代码工具是一种高效的方式来加速开发过程,尤其在基于Spring和Maven的项目中。这个工具能够帮助开发者从数据库中的表格结构自动创建对应的Java实体类、Mapper接口、XML映射文件以及Service和...

Global site tag (gtag.js) - Google Analytics