일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- redis
- laravel
- linux
- JVM
- db
- php
- 맛집
- jsp
- ubuntu
- ReactJS
- tool
- MySQL
- springboot
- 요리
- Spring Boot
- it
- elasticsearch
- jenkins
- Oracle
- javascript
- devops
- IntelliJ
- Git
- Gradle
- Spring
- Web Server
- AWS
- java
- Design Patterns
- Spring Batch
Archives
- Today
- Total
아무거나
[SpringBoot] Redundant declaration: @SpringBootApplication already applies given @ComponentScan 본문
Java & Kotlin/Spring
[SpringBoot] Redundant declaration: @SpringBootApplication already applies given @ComponentScan
전봉근 2019. 4. 15. 14:25반응형
@ComponentScan 관련
@ComponentScan 에서 빨간줄이 표시되길래 확인해보니 Redundant declaration: @SpringBootApplication already applies given @ComponentScan 을 표시하고 있었다. 즉 내용 그대로 @SpringBootApplication 안에 @ComponentScan이 이미 적용되어 있다고 되어있다.
아래 코드와 같이 @SpringBootApplication 의 scanBasePackages 를 활용하여 코드를 변경하면 된다.
@SpringBootApplication(scanBasePackages = "com.bkjeon.example") // 추가
public class ApiApplication extends SpringBootServletInitializer {
public static void main(String[] args) {
SpringApplication.run(ApiApplication.class, args);
}
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(ApiApplication.class);
}
}
반응형
'Java & Kotlin > Spring' 카테고리의 다른 글
[spring boot] 특정 디렉토리에 있는 파일 목록 읽기 (0) | 2019.05.22 |
---|---|
[spring boot] Spring Boot에서 에러 페이지 처리하기 (0) | 2019.05.22 |
[SpringBoot] 간단한 Interceptor 구현 (0) | 2019.01.16 |
[Spring Boot] @ComponentScan 이란 (0) | 2019.01.16 |
[Spring Boot] 스케줄링 구현 (0) | 2019.01.16 |
Comments