그냥하면 에러가 발생하기에 수정이 필요함
-----
@ComponentScan(basePackages = {"com.biz"}, includeFilters = {@Filter(value = org.springframework.stereotype.Controller.class)})
//@EnableCaching /* 캐쉬관련 */
//@EnableWebMvc //2020-08-04 기준 spring-admin과 lombok 관련 문제로 EnableWebMvc 사용하면 안됨. 참고: https://github.com/codecentric/spring-boot-admin/issues/777
@Configuration
public class MvcConfiguration implements WebMvcConfigurer {
/**
* spring-admin client에게 요청시 http basic auth로 요청하기 위한 커스텀
* - 참고 basic auth 생성기: https://www.blitter.se/utils/basic-authentication-header-generator/
*
* @return
*/
@Bean
public HttpHeadersProvider customHttpHeadersProvider() {
return instance -> {
HttpHeaders httpHeaders = new HttpHeaders();
httpHeaders.add("Authorization", " Basic 블라블라");
return httpHeaders;
};
}
}
'JAVA > Spring boot' 카테고리의 다른 글
IntelliJ에서 Maven multi module + spring boot + jsp 환경에서 JSP 못찾는 문제 해결 (0) | 2022.05.23 |
---|---|
Spring boot 에서 JSP의 제약 (0) | 2019.05.26 |
spring boot 핫스왑 적용방법(with springloaded) (0) | 2019.04.16 |
spring boot embedded tomcat 사용시 특정 주기마다 느려지는 원인파악 디버깅 메모 - 1 (0) | 2016.07.04 |
파일업로드 Rest full 기능 샘플 소스 (0) | 2016.06.28 |