前段时间产品突然提了个需求,要求写出项目组的所有表的文档,由于数据库里面表非常多,手写肯定不行,而且容易出错,就做了个项目,以后导数据库文档,直接就可以用了。
项目结构是springboot+mybatis,使用起来很简单。
配置下
server.port=8888
## master 数据源配置
master.datasource.url: jdbc:mysql://localhost:3306/gateway_admin_stable?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8&useSSL=false
master.datasource.username=root
master.datasource.password=123456
master.datasource.driverClassName=com.mysql.jdbc.Driver
dataName:test_admin_stable
filePath:d:/word/demo.doc
主要是操作word,maven需要引入这些依赖。
<!-- https://mvnrepository.com/artifact/com.lowagie/itext -->
<dependency>
<groupId>com.lowagie</groupId>
<artifactId>itext</artifactId>
<version>2.1.7</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.itextpdf/itext-asian -->
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itext-asian</artifactId>
<version>5.2.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.lowagie/itext-rtf -->
<dependency>
<groupId>com.lowagie</groupId>
<artifactId>itext-rtf</artifactId>
<version>2.1.7</version>
</dependency>
导出的数据如下:
拿来主义者可以直接进这里:
码云地址:https://gitee.com/WuSuoWeiYouWuSuoWeiWu/tableWord
如果觉得好用可以给个star,我继续优化。