`

A code generator for iBATIS

阅读更多
Abator 配置:
  1. <!---->xml version="1.0" encoding="UTF-8"?>  
  2. <!---->
  3.   "-//Apache Software Foundation//DTD Abator for iBATIS Configuration 1.0//EN"   
  4.   "http://ibatis.apache.org/dtd/abator-config_1_0.dtd">  
  5.   
  6. <abatorConfiguration>  
  7.     <abatorContext id="dbConfig" generatorSet="Java5"  
  8.         defaultModelType="conditional">  
  9.   
  10.         <jdbcConnection driverClass="net.sourceforge.jtds.jdbc.Driver"  
  11.             connectionURL="jdbc:jtds:sqlserver://localhost:1433/EIM;tds=8.0;lastupdatecount=true"  
  12.             userId="sa" password="jjsbsql">  
  13.             <classPathEntry location="D:\lib\jtds-1.2.2-dist\jtds-1.2.2.jar" />  
  14.         jdbcConnection>  
  15.   
  16.   
  17.         <javaModelGenerator targetPackage="com.synnex.ibatis.model"  
  18.             targetProject="abatorTest">  
  19.             <property name="enableSubPackages" value="true" />  
  20.             <property name="trimStrings" value="true" />  
  21.   
  22.             <property name="rootClass" value="Object" />  
  23.         javaModelGenerator>  
  24.   
  25.   
  26.         <sqlMapGenerator targetPackage="com.synnex.ibatis.sqlmap"  
  27.             targetProject="abatorTest">  
  28.             <property name="enableSubPackages" value="true" />  
  29.         sqlMapGenerator>  
  30.   
  31.   
  32.         <daoGenerator type="spring"  
  33.             targetPackage="com.synnex.ibatis.dao" targetProject="abatorTest">  
  34.             <property name="enableSubPackages" value="true" />  
  35.   
  36.             <property name="rootInterface" value="CustomInterface" />  
  37.         daoGenerator>  
  38.   
  39.   
  40.         <table tableName="EIM_ClientInfo" escapeWildcards="true">  
  41.             <generatedKey column="uid" sqlStatement="SqlServer" identity="true" />  
  42.         table>  
  43.   
  44.     abatorContext>  
  45. abatorConfiguration>  
分享到:
评论
1 楼 pobaby 2009-04-30  
为什么右键 还没出来呢?

相关推荐

    generator, A code generator for MyBatis and iBATIS..zip

    MyBatis Generator(MBG)是一个强大的代码生成器,它为MyBatis和iBATIS提供了自动生成Java源代码和XML映射文件的能力。这个工具极大地简化了开发过程,减少了手动编写重复的 CRUD(创建、读取、更新、删除)操作...

    为 Ibatis 2.3.4 构建增强的 Apache Ibator 实体类生成工具

    Ibator is a code generator for iBATIS. Ibator will introspect a database table (or many tables) and will generate iBATIS artifacts that can be used to access the table(s). This abates some of the ...

    MyBatis-Generate

    MyBatis Generator (MBG) is a code generator for MyBatis MyBatis and iBATIS. It will generate code for all versions of MyBatis, and versions of iBATIS after version 2.2.0. It will introspect a database...

    ibatis2代码生成工具(生成实体Bean,Dao,SqlMap)

    6. **代码生成器(Code Generator)**:iBatis提供了代码生成工具ibator,它可以自动生成基于数据库表的Bean、Dao和SqlMap文件,极大地提高了开发效率。ibator可以根据配置文件自动读取数据库中的表结构,然后生成...

    ibatis sqlserver代码自动生成

    1. **代码生成器工具**:市面上存在多种Ibatis代码生成器,如MyBatis Generator(MBG)、Ibatis Code Generator等。这些工具通常需要用户配置数据库连接信息、表名和字段信息,然后能够自动生成对应的Mapper XML文件...

    mybatis-generator-1.3.3

    Code generator for MyBatis and iBATIS. It will generate code for all versions of MyBatis, and versions of iBATIS after version 2.2.0. It will introspect a database table (or many tables) and will ...

    mybatis/ibatis自动生成SQLMapper脚本

    1. **配置Generator**: MyBatis 提供了一个代码生成器(Code Generator),可以自动生成包括Mapper接口、Mapper XML文件、DAO实现类在内的代码。配置Generator通常在`generatorConfig.xml`文件中进行,其中包含...

    MyBatis Generator 自动成成文件项目源码

    先安装 eclipse插件安装地址:http://mybatis.googlecode.com/svn/sub-projects/generator/trunk/eclipse/UpdateSite/ ...分别对应mysql和oracle Generator Mybatis/ibatis Artifacts 会自动生成到该项目中

    mybatis-generator-core-1.3.3-SNAPSHOT.jar

    MyBatis Generator - http://mybatis.googlecode.com/svn/sub-projects/generator/trunk/eclipse/UpdateSite/ 2 关闭eclipse 3 打开eclipse安装目录下的plugins目录 4 找到org.mybatis.generator.core_1.3.2....

    Jmr - Java Code Generator:“黑科技”将使开发生产力提高1.5到5-开源

    %&gt;类似JSP)和Jmr标记(设置/获取) / for ...)模型:数据库模型(如表/视图),Java POJO模型,Xml文件模型,并包含转换/映射/转换工具操作:Java类可以将Java变量设置为模板。 支持任何类型的项目Maven,Gradle,...

    strut2+spring+ibatis 的ation层,service层,dao层自动生成,简单易用

    codegenerator这个名字的文件可能就是这个代码生成工具的实现。在使用时,开发者可能需要配置数据库连接信息、实体类、表名等参数,然后工具就会根据预设的模板生成相应的Action、Service和DAO代码。这些代码通常会...

    code-generator:通用jdbc代码生成器,使用自定义免费标记模板为每个使用关系型数据库项目生成通用代码

    除了利用代码生成,也可以写模板生成数据库说明文档快速开始修改src / test / resources / codeGenerator / config.xml中的jdbc信息运行代码生成器src / test / java / com / fline / generator / GeneratorTest....

    mybaits自动生成代码

    CodeGenerator是MyBatis提供的一个工具类,它可以基于数据库中的表信息自动生成对应的Java实体类(POJO)、Mapper接口、Mapper XML文件以及Service类。这样,开发者只需关注业务逻辑,而不必关心数据访问层的细节。 ...

    SpringBoot整合MybatisPlus的简单教程实现(简单整合)

    例如,我们可以创建一个CodeGenerator类,用于生成模块代码: ```java public class CodeGenerator { public static void main(String[] args) { // 读取控制台内容 Scanner scanner = new Scanner(System.in); ...

Global site tag (gtag.js) - Google Analytics