1.我使用的是三级模块的架构,一个总的父工程,父工程下有多个父模块,每个父模块下又有多个子模块,common父模块作为通用模块,在父模块service的子模块下面service_edu下面整合swagger2时,首先需要在service模块中引入common模块
service_base子模块中的swagger依赖如下
<!--swagger-->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<scope>provided </scope>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<scope>provided </scope>
</dependency>
在service父模块的pom引入依赖
<dependency>
<groupId>com.atguigu</groupId>
<artifactId>service_base</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
进行以上操作,启动服务会报以下错误
以上错误的发生可能有两种原因:
①在引入service_base依赖后没有刷新maven会报这个错误,所以检查service模块的依赖是否已经引进来
②在启动类的上面没有加注解@ComponentScan(basePackages = {"com.atguigu"}),注解中的扫描的路径尽量和swagger配置中的扫描路径保持一致