中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

如何使用screw一鍵生成數據庫文檔

發布時間:2023-02-15 09:30:57 來源:億速云 閱讀:256 作者:iii 欄目:數據庫

這篇文章主要講解了“如何使用screw一鍵生成數據庫文檔”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“如何使用screw一鍵生成數據庫文檔”吧!

一. screw的配置
  1. 配置pom文件

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.2.9.RELEASE</version>
    <relativePath /> <!-- lookup parent from repository -->
  </parent>
  <groupId>com.bee</groupId>
  <artifactId>screw-demo</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <name>screw-demo</name>
  <description>Screw Demo for Spring Boot</description>

  <properties>
    <java.version>1.8</java.version>
  </properties>

  <dependencies>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-test</artifactId>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <groupId>org.junit.vintage</groupId>
          <artifactId>junit-vintage-engine</artifactId>
        </exclusion>
      </exclusions>
    </dependency>

    <dependency>
      <groupId>cn.smallbun.screw</groupId>
      <artifactId>screw-core</artifactId>
      <version>1.0.4</version>
    </dependency>

  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
      </plugin>
      <plugin>
        <groupId>cn.smallbun.screw</groupId>
        <artifactId>screw-maven-plugin</artifactId>
        <version>1.0.4</version>
        <dependencies>
          <!-- HikariCP -->
          <dependency>
            <groupId>com.zaxxer</groupId>
            <artifactId>HikariCP</artifactId>
            <version>3.4.5</version>
          </dependency>
          <!--mysql driver -->
          <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>8.0.20</version>
          </dependency>
        </dependencies>
        <configuration>
          <!--username -->
          <username>root</username>
          <!--password -->
          <password>123456</password>
          <!--driver -->
          <driverClassName>com.mysql.cj.jdbc.Driver</driverClassName>
          <!--jdbc url -->
          <jdbcUrl>jdbc:mysql://localhost:3306/db_mybatis</jdbcUrl>
          <!--生成文件類型 -->
          <fileType>HTML</fileType>
          <!--打開文件輸出目錄 -->
          <openOutputDir>false</openOutputDir>
          <!--生成模板 -->
          <produceType>freemarker</produceType>
          <!--描述 -->
          <description>數據庫文檔生成</description>
          <!--版本 -->
          <version>1.0.0</version>
          <!--標題 -->
          <title>數據庫文檔</title>
        </configuration>
        <executions>
          <execution>
            <phase>compile</phase>
            <goals>
              <goal>run</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>
  1. 配置數據源
    src/main/resources/application.properties

spring.datasource.url=jdbc:mysql://localhost:3306/db_mybatis?useUnicode=true&characterEncoding=UTF-8&useSSL=false
spring.datasource.usename=root
spring.datasource.password=123456
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.xa.properties.useInformationSchema=true
二. 通過Maven插件運行screw
  1. IDEA中運行

  2. 如何使用screw一鍵生成數據庫文檔

  3. Eclipse中運行

  • 處理POM配置文件中的錯誤(也可以不管這個錯誤,直接運行

  • 如何使用screw一鍵生成數據庫文檔


  • 如何使用screw一鍵生成數據庫文檔


  • 如何使用screw一鍵生成數據庫文檔


  • 運行

  • 如何使用screw一鍵生成數據庫文檔


  • 如何使用screw一鍵生成數據庫文檔

  • 在Goals中輸入:screw:run

三. 生成數據庫各表的設計文檔

如何使用screw一鍵生成數據庫文檔

感謝各位的閱讀,以上就是“如何使用screw一鍵生成數據庫文檔”的內容了,經過本文的學習后,相信大家對如何使用screw一鍵生成數據庫文檔這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

AI

改则县| 广汉市| 孝感市| 崇明县| 湘阴县| 临汾市| 黎城县| 佛教| 屯昌县| 黔东| 保康县| 井陉县| 潞西市| 翁牛特旗| 琼结县| 兴安县| 体育| 广丰县| 乡城县| 肥东县| 开阳县| 九台市| 翁源县| 平南县| 阳高县| 友谊县| 芦溪县| 松阳县| 怀集县| 都昌县| 大丰市| 鸡西市| 同心县| 万山特区| 三门峡市| 陆川县| 高密市| 乐清市| 黑山县| 年辖:市辖区| 门头沟区|