1、在pom.xml当中引入smart-doc的配置
在pom.xml的<build>标签的<plugins>标签下增加smart-doc的配置
<!--smart-doc begin-->
<plugin>
<groupId>com.github.shalousun</groupId>
<artifactId>smart-doc-maven-plugin</artifactId>
<version>2.3.6</version>
<configuration>
<!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
<configFile>./src/main/resources/smart-doc.json</configFile>
<!--指定项目名称,推荐使用动态参数,例如${project.description}-->
<!--如果smart-doc.json中和此处都未设置projectName,2.3.4开始,插件自动采用pom中的projectName作为设置-->
<!--<projectName>projectName</projectName>-->
</configuration>
<executions>
<execution>
<!--如果不需要在执行编译