比如模块A中有个MyDemoEntity类,在B中以依赖的形式引入了A,并在B的接口中以MyDemoEntity作为返回值,导出到YAPI发现MyDemoEntity的备注没了。
解决:
将A的内容安装到本地MAVEN仓库,并且需要将源码也一起安装
<build>
<resources>
<resource>
<directory>target/classes</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version> <!-- 使用最新的插件版本 -->
<executions>
<execution>