91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

基于mybatis逆向工程的示例分析

發布時間:2021-08-09 10:34:57 來源:億速云 閱讀:101 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關基于mybatis逆向工程的示例分析的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

使用mybatis生成逆向工程的詳細步驟,我個人感覺這個是最簡單的一個了,雖然網上有很多種的方法來生成逆向工程,可是這個方法最簡單。在這里我是使用maven搭建的環境,但是在正常的環境下也是一樣的。

步驟:

1、創建一個genreatorConfig.xml文件,這個文件的名字可以任意。我創建的時候是將它放在了src/main/resources下,這個文件的內容并不需要去記,只需要去網上找就可以了。我們要做的只是對配置文件當中的一些部分做修改,修改成自己的數據就可以了。

<?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="D:\MysqlJdbcconnector/mysql-connector-java-5.1.41-bin.jar" />


<context id="DB2Tables" targetRuntime="MyBatis3">

<commentGenerator>
<property name="suppressDate" value="true"/>
<property name="suppressAllComments" value="true"/>
</commentGenerator>
<!--數據庫鏈接地址賬號密碼-->
<jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost/pet_hospital" userId="root" password="112233">
</jdbcConnection>
<javaTypeResolver>
<property name="forceBigDecimals" value="false"/>
</javaTypeResolver>
<!--生成Model類存放位置-->
<javaModelGenerator targetPackage="com.qianfeng.bean" targetProject="src/main/java">
<property name="enableSubPackages" value="true"/>
<property name="trimStrings" value="true"/>
</javaModelGenerator>
<!--生成映射文件存放位置-->
<sqlMapGenerator targetPackage="com.qianfeng.bean" targetProject="src/main/java">
<property name="enableSubPackages" value="true"/>
</sqlMapGenerator>
<!--生成DaoMapper類存放位置-->
<javaClientGenerator type="XMLMAPPER" targetPackage="com.qiafeng.dao" targetProject="src/main/java">

<property name="enableSubPackages" value="true"/>

</javaClientGenerator>
<!--生成對應表及類名,需要記住的一點是逆向工程無法生成關聯關系,只能生成單表操作-->
<table tableName="owners" 
domainObjectName="Owners" 
></table>
<table tableName="pets" 
domainObjectName="Pets" 
></table>
<table tableName="types" 
domainObjectName="Types" 
></table>
<table tableName="employee" 
domainObjectName="Employee" 
></table>
<table tableName="specialties" 
domainObjectName="Specialties" 
></table>
<table tableName="vets" 
domainObjectName="Vets" 
></table>
<table tableName="visits" 
domainObjectName="Visits" 
></table>
<table tableName="vet_specialties" 
domainObjectName="VetSpecialties" 
></table>

</context>
</generatorConfiguration>

2、導入相應的jar包,mybatis-generator-core這個包和mysql-connector-java這個包

3、創建一個測試類,然后運行下面代碼就可以了。

public static void generator() throws Exception{
  List<String> warnings = new ArrayList<String>();
  boolean overwrite = true;
  //項目根路徑不要有中文,我的有中文,所以使用絕對路徑
  File configFile = new File("src/main/resources/genreatorConfig.xml");
  ConfigurationParser cp = new ConfigurationParser(warnings);
  Configuration config = cp.parseConfiguration(configFile);
  DefaultShellCallback callback = new DefaultShellCallback(overwrite);
  MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, callback, warnings);
  myBatisGenerator.generate(null);
 }
 public static void main(String[] args) {
  try {
   generator();
  } catch (Exception e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
 }

感謝各位的閱讀!關于“基于mybatis逆向工程的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

蓬安县| 南康市| 育儿| 肇源县| 平阳县| 上犹县| 塔河县| 绥宁县| 浮梁县| 张家口市| 汽车| 青川县| 金坛市| 大城县| 成都市| 临潭县| 揭东县| 大埔区| 鄱阳县| 扶绥县| 武功县| 和顺县| 平舆县| 惠安县| 双峰县| 娄底市| 莒南县| 宜黄县| 新巴尔虎左旗| 甘南县| 安西县| 临夏市| 岳阳县| 岱山县| 玛沁县| 定安县| 耿马| 衡东县| 天长市| 昌宁县| 商河县|