为了账号安全,请及时绑定邮箱和手机立即绑定

正在回答

2 回答

<?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>
 <context id="mybatis" targetRuntime="MyBatis3">

   <!--自动实现Serializable接口-->
   <plugin type="org.mybatis.generator.plugins.SerializablePlugin"></plugin>

   <!-- 去除自动生成的注释 -->
   <commentGenerator>
     <property name="suppressAllComments" value="true"/>
   </commentGenerator>

   <!--数据库基本信息-->
   <jdbcConnection driverClass="com.mysql.jdbc.Driver"
     connectionURL="jdbc:mysql://10.223.25.82:3306/shopmall"
     userId="root"
     password="123456">
   </jdbcConnection>

   <javaTypeResolver>
     <property name="forceBigDecimals" value="true"/>
     <property name="useJSR310Types" value="true"/>
   </javaTypeResolver>

   <!--生成实体类的位置以及包的名字-->
   <!--同样Mac用户:targetProject 为全路径-->
   <javaModelGenerator targetPackage="com.ireeder.order.domain.entity"
     targetProject="src/main/java">
     <!-- enableSubPackages:是否让schema作为包的后缀 -->
     <property name="enableSubPackages" value="true"/>
     <!-- 从数据库返回的值被清理前后的空格 -->
     <property name="trimStrings" value="true"/>
   </javaModelGenerator>

   <!--生成映射文件存放位置-->
   <!--同样Mac用户:targetProject 为全路径-->
   <sqlMapGenerator targetPackage="mapper"
     targetProject="src/main/resources">
     <!-- enableSubPackages:是否让schema作为包的后缀 -->
     <property name="enableSubPackages" value="false"/>
   </sqlMapGenerator>

   <!--生成Dao类存放位置,mapper接口生成的位置-->
   <!--同样Mac用户:targetProject 为全路径-->
   <javaClientGenerator type="XMLMAPPER" targetPackage="com.shopmall.order.domain.mapper"
     targetProject="src/main/java">
     <!-- enableSubPackages:是否让schema作为包的后缀 -->
     <property name="enableSubPackages" value="false"/>
   </javaClientGenerator>

   <table schema="shopmall" tableName="coupon_item"
     domainObjectName="CouponItemEntity" enableCountByExample="false"
     enableDeleteByExample="false" enableSelectByExample="false"
     selectByPrimaryKeyQueryId="true"
     enableUpdateByExample="false">
     <columnOverride column="updated_at" javaType="java.time.LocalDateTime"/>
     <columnOverride column="created_at" javaType="java.time.LocalDateTime"/>
     <columnOverride column="validity" javaType="java.lang.Boolean"/>
   </table>
 </context></generatorConfiguration>


2 回复 有任何疑惑可以回复我~

去百度搜一下都有了,或者去官网


0 回复 有任何疑惑可以回复我~
#1

weixin_慕娘2291449

官网哪里下?找不到
2019-07-09 回复 有任何疑惑可以回复我~
#2

李知恩天下第一好看 回复 weixin_慕娘2291449

http://www.mybatis.org/generator/configreference/xmlconfig.html
2019-07-27 回复 有任何疑惑可以回复我~
#3

Koma_vv 回复 李知恩天下第一好看

非常感谢
2019-12-03 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

mybatis-generator.xml在哪里下载

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信