Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 스프링부트
- 스프링부트 계층구조
- 스프링
- @temproal
- ./gr
- 세션기반 인증
- MSA
- 로그인/로그아웃
- RESTfull API
- Java
- 로그인 인증 흐름
- IPC
- 비동기
- ./gradlew docker
- 동기
- ORM
- 어노테이션
- 작업명중복
- 프레젠테이션 계층
- formmatted
- 퍼시스턴스 계층
- 스프링부트 구조
- spring
- 스프링 부트 테스트
- http
- 비즈니스 계층
- JPA
- java I/O
- 토큰기반 인증
- JWT
Archives
- Today
- Total
[DEV] J-Jay
IntelliJ 실행시 finished with non-zero exit value 1 에러 본문
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.
삭제를 하니 잘 동작했다.
끝.
'Trouble Shooting > Error' 카테고리의 다른 글
ERROR: error during connect: this error may indicate that the docker daemon is not running (0) | 2024.04.22 |
---|