개발자의 오르막

[SpringBoot] 컴파일 오류. WindowDefender 를 확인하라 본문

Trouble Shouting

[SpringBoot] 컴파일 오류. WindowDefender 를 확인하라

계단 2019. 11. 4. 13:57

# 문제

Failed to parse configuration class 
[net.grovesoft.admin.console.WebAdminConsoleApplication]; 
nested exception is java.io.FileNotFoundException: class path resource 
[net/grovesoft/core/security/AbstractSecurityConfiguration.class] 
cannot be opened because it does not exist

계속 프로젝트를 엎어버리게 만든 오류이다. 이건 그냥 시도때도 없이 나타나는 오류라,

그냥 잡고 가는게 편하겠다.

 

일단 이 오류를 보면

AbstractSecurityConfiguration.Class 파일을 찾을 수 없다고 나온다.

근데 있다.

 

Could not obtain annotation attribute value for public abstract java.lang.Class[] 
org.springframework.context.annotation.Import.value()

 

결국 해당 파일을 찾미 못해서 발생하는 건데..

 

https://intellij-support.jetbrains.com/hc/en-us/articles/360006298560

 

Antivirus Impact on Build Speed

Some antivirus software can interfere with the IDE build process, causing builds to run dramatically slower. When you run a build in the IDE, many class files are created on your computer. If your ...

intellij-support.jetbrains.com

  • Click the Start button
  • Type “Windows Security”
  • Click on “Virus and threat protection”
  • Click on “Manage settings” under “Virus & threat protection settings”
  • Scroll down if needed, and then click on “Add or remove exclusions”
  • For every folder shown in the notification, press the + button, select “Folder” from the menu, and select the folder.

즉, WindowDefender 가 인텔리제이가 구동할때마다 파일을 검사하는데, 이것을 제외시켜주는 작업이 필요하다.

 

 

Comments