大坑
Swagger的@Api注解如果写在 @Controller 上面 这个控制层就识别不了了
错误写法:
@Api
@Controller
public class test{
}
正确写法
@Controller
@Api
public calss test{
}
版权声明:本文为qq_40213178原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
大坑
Swagger的@Api注解如果写在 @Controller 上面 这个控制层就识别不了了
错误写法:
@Api
@Controller
public class test{
}
正确写法
@Controller
@Api
public calss test{
}