[DEV] J-Jay

IntelliJ 실행시 finished with non-zero exit value 1 에러 본문

Trouble Shooting/Error

IntelliJ 실행시 finished with non-zero exit value 1 에러

J-Jay 2024. 4. 24. 23:30
728x90

 

코드를 실행하니 아래와 같은 에러가 발생했다.

> Process 'command 'C:\Program Files\jdk-17.0.2\bin\java.exe'' finished with non-zero exit value 1

* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.

 

어라...?

 

해결방법1.

 

검색을 해본 결과 아래와 같은 방법을 시도 하면 된다고 하지만...

 

1. File > Settings 메뉴 클릭 (단축키: ctrl + alt + s)
2. Build, Execution, Deployment > Build Tools > Gradle 메뉴 이동
3. Build and run using을 IntelliJ IDEA 로 변경

 

되지 않았다.

 

소스를 보니 Controller 쪽에서 사용되지 않는 것을 사용해서 그렇다.

 

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2024-04-24 23:28:01.965 ERROR 18852 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 

***************************
APPLICATION FAILED TO START
***************************

Description:

Parameter 1 of constructor in "사용하지 않는 소스파일" that could not be found.


Action:

Consider defining a bean of type "사용하지 않는 소스파일" in your configuration.

 

삭제를 하니 잘 동작했다.

 

끝.