swaggerUI页面没有显示Controller方法

swaggerUI页面没有显示Controller方法_第1张图片
swaggerUI页面没有显示Controller方法_第2张图片
如上面两个图,ui界面未显示我配置的描述信息

解决方案如下:

第一步:
swaggerUI页面没有显示Controller方法_第3张图片
第二步:
启动类未加根包扫描

// 给启动类加注解,扫描根包
@SpringBootApplication(scanBasePackages = CommonCons.BASE_PACKAGE)
public class SpringclouddemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(SpringclouddemoApplication.class, args);
    }
}

CommonCons.BASE_PACKAGE换成自己的根包
举个例子:
@SpringBootApplication(scanBasePackages = {“com.nsj”}) // 给启动类加注解,扫描根包

你可能感兴趣的:(遇到的可爱的BUG们,java,spring,boot,spring)