일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Spring
- Oracle
- 요리
- ReactJS
- Design Patterns
- Spring Boot
- php
- springboot
- jenkins
- IntelliJ
- jsp
- Git
- javascript
- it
- Web Server
- laravel
- elasticsearch
- java
- tool
- AWS
- MySQL
- 맛집
- redis
- Spring Batch
- JVM
- linux
- ubuntu
- Gradle
- db
- devops
Archives
- Today
- Total
아무거나
[intellij]Could not autowired, No beans of ~ 에러 본문
반응형
[Could not autowired, No beans of ~]
이클립스에서 인텔리제이로 변경시 주의 사항입니다.
Could not autowired, No beans of ~
증상
이클립스에선 문제없이 컴파일되지만 인텔리j 에선 위와 같은 오류가 나면서 컴파일 되지않습니다.
[방법 1]
1. Help -> Edit Custom Properties
아래 정보를 추가합니다.
idea.spring.boot.filter.autoconfig=false
[방법 2]
패키지내 아래와 같은 Configuration 을 추가하여 인텔리제이에게 인식시켜줍니다.
@Configuration
@ComponentScan({"@Autowired 대상이 있는 패키지"})
class ComponentScanConfiguration {}
반응형
'IT > 개발관련툴' 카테고리의 다른 글
[IntelliJ] 프로젝트 클린 (0) | 2019.12.26 |
---|---|
[IntelliJ] IDEA에서 Gradle 변경 반영하기 (0) | 2019.12.26 |
[intellij] lombok 설정 (0) | 2019.12.26 |
[intellij] getter/setter 메서드 자동생성 (0) | 2019.12.26 |
intellij 플러그인 설치 방법 (0) | 2019.12.26 |
Comments