Java automatically generates database design documents (Word)

I. Introduction

        In daily development work, there are occasional situations where database design documents need to be provided at the end of the project. There should be basically no problem with the preparation of this document. If you still don’t know how to write this document, you can refer to the following article.

https://blog.csdn.net/qq_41057885/article/details/114436170

        Although the writing of the document is no longer a problem, it does take a long time, a fast hand speed and a lot of repeated operations to complete the document. To solve these problems, I wrote a project. Through this project, database design documents can be automatically generated, and styles and fields can even be customized.

2. Project description

The project git address is as follows:

database_doc: Generate database Word documents based on database tables (gitee.com)

2.1. Project principle description

        This project (database_doc) generates word documents by directly writing string data through the file stream. In order for the word software to correctly recognize and display the document, it is also necessary to splicing and parsing the word tags and writing them in a certain format.

2.2. Instructions for usage

        The project supports two usage forms. 1. Default style  . 2. Customize the configuration page . See the project warehouse description for details.

3. Effect display

 

Guess you like

Origin blog.csdn.net/qq_41057885/article/details/127090006