정확한 원인은 Spring Boot 2.X와 Springfox 3.0.0이 서로 충돌하여 발생하는 문제입니다.
방법 1 (Bean 등록)
@Bean
public static BeanPostProcessor springfoxHandlerProviderBeanPostProcessor() {
return new BeanPostProcessor() {
@Override
public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
if (bean instanceof WebMvcRequestHandlerProvider || bean instanceof WebFluxRequestHandlerProvider) {
customizeSpringfoxHandlerMappings(getHandlerMappings(bean));
}
return bean;
}
private <T extends RequestMappingInfoHandlerMapping> void customizeSpringfoxHandlerMappings(List<T> mappings) {
List<T> copy = mappings.stream()
.filter(mapping -> mapping.getPatternParser() == null)
.collect(Collectors.toList());
mappings.clear();
mappings.addAll(copy);
}
@SuppressWarnings("unchecked")
private List<RequestMappingInfoHandlerMapping> getHandlerMappings(Object bean) {
try {
Field field = ReflectionUtils.findField(bean.getClass(), "handlerMappings");
field.setAccessible(true);
return (List<RequestMappingInfoHandlerMapping>) field.get(bean);
} catch (IllegalArgumentException | IllegalAccessException e) {
throw new IllegalStateException(e);
}
}
};
}
방법 2 (application.properties)
spring.mvc.pathmatch.matching-strategy=ANT_PATH_MATCHER
ref : https://stackoverflow.com/questions/70178343/springfox-3-0-0-is-not-working-with-spring-boot-2-6-0
'Spring Boot' 카테고리의 다른 글
[Spring] REST API로 파일 보내기 (0) | 2023.08.10 |
---|---|
[Swagger] swagger-ui.html 접속 url 변경하기 (리다이렉트) (0) | 2023.08.09 |
[Spring] 타임리프에서 Spring Service 호출하기 (0) | 2023.08.08 |
[Spring] Lombok을 이용한 간단한 의존성 생성자 주입 (0) | 2023.08.01 |
[Spring] List를 Page로 변환하기 (0) | 2023.07.12 |