Forráskód Böngészése

:construction_worker: 数据库表结构自动化生成

lag 9 hónapja
szülő
commit
1fe96b88be

+ 14 - 2
ghjg-item-datashare-server/pom.xml

@@ -171,9 +171,13 @@
       <artifactId>fastjson</artifactId>
       <groupId>com.alibaba</groupId>
     </dependency>
+    <!--    <dependency>-->
+    <!--      <artifactId>ojdbc6</artifactId>-->
+    <!--      <groupId>com.oracle</groupId>-->
+    <!--    </dependency>-->
     <dependency>
-      <artifactId>ojdbc6</artifactId>
-      <groupId>com.oracle</groupId>
+      <artifactId>ojdbc8</artifactId>
+      <groupId>com.oracle.database.jdbc</groupId>
     </dependency>
     <!--    <dependency>-->
     <!--      <groupId>cn.com.kingbase</groupId>-->
@@ -211,6 +215,14 @@
       <artifactId>spring-boot-starter-validation</artifactId>
       <groupId>org.springframework.boot</groupId>
     </dependency>
+    <dependency>
+      <groupId>cn.smallbun.screw</groupId>
+      <artifactId>screw-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.zaxxer</groupId>
+      <artifactId>HikariCP</artifactId>
+    </dependency>
   </dependencies>
   <description>ghjg-item-server</description>
   <groupId>com.shanghaichengdi</groupId>

+ 3 - 2
ghjg-item-datashare-server/src/main/resources/profile/dev/application.yml

@@ -21,10 +21,11 @@ spring:
       idle-timeout: 600000
       max-lifetime: 1800000
   redis:
-    host: localhost
-    port: 6379
+    host: 10.83.240.181
+    port: 8085
     database: 0
     timeout: 5000
+    password: Ghzx@Redis
     jedis:
       pool:
         max-active: 8

+ 69 - 1
ghjg-item-datashare-server/src/test/java/com/shanghaichengdi/ghjgitem/GhjgItemServerApplicationTests.java

@@ -1,13 +1,81 @@
 package com.shanghaichengdi.ghjgitem;
 
+import cn.smallbun.screw.core.Configuration;
+import cn.smallbun.screw.core.engine.EngineConfig;
+import cn.smallbun.screw.core.engine.EngineFileType;
+import cn.smallbun.screw.core.engine.EngineTemplateType;
+import cn.smallbun.screw.core.execute.DocumentationExecute;
+import cn.smallbun.screw.core.process.ProcessConfig;
+import com.zaxxer.hikari.HikariDataSource;
 import org.junit.jupiter.api.Test;
 import org.springframework.boot.test.context.SpringBootTest;
 
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+
 @SpringBootTest
 class GhjgItemServerApplicationTests {
 
   @Test
-  void contextLoads() {
+  void generate() {
+    // 生成文件配置
+    EngineConfig engineConfig = EngineConfig.builder()
+        // 生成文件路径,自己mac本地的地址,这里需要自己更换下路径
+        .fileOutputDir("E:\\DataShareFolder\\tableStructure")
+        // 打开目录
+        .openOutputDir(false)
+        // 文件类型 HTML/WORD/MD 三种格式
+        .fileType(EngineFileType.WORD)
+        // 生成模板实现
+        .produceType(EngineTemplateType.freemarker).build();
+
+    //数据库名称
+
+    HikariDataSource hikariDataSource = new HikariDataSource();
+    //设置数据库连接
+    hikariDataSource.setJdbcUrl("jdbc:oracle:thin:@//10.114.4.56/shhwdb");
+    hikariDataSource.setUsername("ghjg_channel");
+    hikariDataSource.setPassword("GHJG@123");
+    // 生成文档配置(包含以下自定义版本号、描述等配置连接)
+    Configuration config = Configuration.builder()
+        .version("1.0.1")
+        .description("数据库设计文档")
+        .dataSource(hikariDataSource)
+        .engineConfig(engineConfig)
+        .produceConfig(getProcessConfig())
+        .build();
+
+    // 执行生成
+    new DocumentationExecute(config).execute();
+
+  }
+
+  /**
+   * 配置想要生成的表+ 配置想要忽略的表
+   *
+   * @return 生成表配置
+   */
+  public static ProcessConfig getProcessConfig() {
+    // 忽略表名
+    List<String> ignoreTableName = Arrays.asList("testa_testa", "testb_testb");
+    // 忽略表前缀
+    List<String> ignorePrefix = Arrays.asList("testa", "testb");
+    // 忽略表后缀
+    List<String> ignoreSuffix = Arrays.asList("_testa", "_testb");
+    return ProcessConfig.builder()
+        //根据名称指定表生成 我需要生成所有表 这里暂时不设置
+        .designatedTableName(new ArrayList<>())
+        //根据表前缀生成 我需要生成所有表 这里暂时不设置
+        .designatedTablePrefix(new ArrayList<>())
+        //根据表后缀生成 我需要生成所有表 这里暂时不设置
+        .designatedTableSuffix(new ArrayList<>())
+        //忽略表名
+        .ignoreTableName(ignoreTableName)
+        //忽略表前缀
+        .ignoreTablePrefix(ignorePrefix)
+        //忽略表后缀
+        .ignoreTableSuffix(ignoreSuffix).build();
   }
 
 }

+ 18 - 0
pom.xml

@@ -51,6 +51,11 @@
         <groupId>com.oracle</groupId>
         <version>${ojdbc.version}</version>
       </dependency>
+      <dependency>
+        <artifactId>ojdbc8</artifactId>
+        <groupId>com.oracle.database.jdbc</groupId>
+        <version>${ojdbc8.version}</version>
+      </dependency>
       <!--      <dependency>-->
       <!--        <groupId>cn.com.kingbase</groupId>-->
       <!--        <artifactId>kingbase8</artifactId>-->
@@ -91,6 +96,16 @@
         <groupId>com.alibaba</groupId>
         <version>${easyExcel.version}</version>
       </dependency>
+      <dependency>
+        <groupId>cn.smallbun.screw</groupId>
+        <artifactId>screw-core</artifactId>
+        <version>${screw-core.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>com.zaxxer</groupId>
+        <artifactId>HikariCP</artifactId>
+        <version>${HikariCP.version}</version>
+      </dependency>
     </dependencies>
   </dependencyManagement>
 
@@ -124,11 +139,14 @@
     <maven.compiler.target>8</maven.compiler.target>
     <mybatis-plus.version>3.4.1</mybatis-plus.version>
     <ojdbc.version>11.2.0.3</ojdbc.version>
+    <ojdbc8.version>12.2.0.1</ojdbc8.version>
     <opencsv.version>4.0</opencsv.version>
     <pagehelper.version>1.3.1</pagehelper.version>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <shiro.version>1.4.0</shiro.version>
     <swagger2.version>2.9.2</swagger2.version>
+    <screw-core.version>1.0.5</screw-core.version>
+    <HikariCP.version>3.4.5</HikariCP.version>
   </properties>
   <version>1.0-SNAPSHOT</version>