http://~/swagger-ui.html 에서
No operations defined in spec!
만 보일 때,
basePackage 가 프로젝트 패키지 맞는지 확인
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.apiInfo(apiInfo())
.select()
.apis(RequestHandlerSelectors.basePackage("com.example.demo"))
.paths(PathSelectors.any())
.build();
}
반응형
'💻 개발IT > Spring' 카테고리의 다른 글
Spring(스프링) 실행 구조 (Controller, Service, Mapper, DAO, VO) (0) | 2022.11.16 |
---|---|
[swagger] Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException (0) | 2022.08.25 |
[intellij] spring run 아이콘 비활성화 (0) | 2022.08.22 |
Spring(스프링) 프로젝트 폴더 구조 (0) | 2022.03.27 |