일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스프링부트 블로그
- 괄호 회전하기 파이썬
- 유니티
- springboot 게시판 프로젝트
- 스프링게시판프로젝트
- python 괄호 회전하기
- 유니티기초
- 프로그래머스 괄호 회전하기 python
- 스프링부트 미니프로젝트
- jpa 게시판
- 유니티Material
- 스프링 게시판 만들기
- typescript 기초문법
- 스프링부트 회원가입
- 스프링부트 게시판만들기
- 파이썬 기초
- 타입스크립트 기초
- springboot 미니프로젝트
- springboot 게시판만들기
- springboot 사이드프로젝트
- JS기초
- 파이썬 괄호 회전하기
- 타입스크립트 기본문법
- spring jpa 사이드프로젝트
- spring jpa 게시판
- 유니티Cube
- 스프링부트 블로그만들기
- 타입스크립트 기초문법
- springboot 게시판
- 스프링부트 update
- Today
- Total
목록Spring/Spring 오류해결 (5)
Digking's cave
entity생성 중에 @Entity가 import 되지 않는 오류가 발생해서 해결해보았습니다. @Entity 뿐만 아니라 javax 도 import 되지 않아서 다 import 되지 않는 상황이었어요 해결방법 build.gradle에 jpa 관련 implementation이 없었어요 👇👇👇👇👇👇👇👇 버전지정은 따로 하지 않고 implementation 'org.springframework.boot:spring-boot-starter-data-jpa' 위 코드를 추가해주었습니다 추가 후 reload all gradle project를 실행해주면 해결 완료입니다! import가 정상적으로 되었습니다👍
IntelliJ에서 SpringBoot 프로젝트 실행시 아래와 같은 오류가 발생하였다. Execution failed for task ':Application.main()'. > Process 'command 'C:/Program Files/Java/jdk-11.0.17/bin/java.exe'' finished with non-zero exit value 1 해결방법 File > Settings 에 들어간다. Build,Execution,Deployment > Build Tools > Gradle 을 누른다. Build and run using 과 Run tests using 이 Gradle로 되어있다! Build and run using 과 Run tests using 을 Intellij IDEA로 ..
오류 junit을 활용한 service Test코드 작성 후 실행하자마자 java.lang.NullPointerExceptio 오류가 발생했다. 해당 service는 전체 List를 조회하는 서비스였고, DB에 데이터도 있는 상태였다! 해결 @SpringBootTest annotation을 추가해준다 @SpringBootTest는 @SpringBootApplication을 찾아서 테스트를 위한 Bean을 생성해준다. Bean이 제대로 생성되지 않아서 service가 null을 return해서 오류가 발생한 거 같다. +) @SpringBootTest 의 역할 @SpringBootApplication을 찾아서 테스트를 위한 Bean을 생성한다. @MockBean으로 정의된 Bean을 찾아서 대체한다. @R..
실행하자마자 다음과 같은 에러가 발생했다. Execution failed for task ':compileJava'. > Could not resolve all files for configuration ':compileClasspath'. 해결방법 build.gradle 에 잘못된 부분이 있어서 오류가 났다. 내 경우에는 implementation 'org.springframework.boot:spring-boot-starter-data-jap' jpa인데 오타가 있었다.(심지어 위에 같은 dependency가 이미 있었다) 이부분을 지워주고 실행하니 깔끔하게 성공!
오류 Spring Boot 프로젝트 실행 중 다음과 같은 오류가 발생했다. [ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:2.7.5:run (default-cli) on project demo: Execution default-cli of goal org.springframework.boot:spring- boot-maven-plugin:2.7.5:run failed: Unable to find a single main class from the following candidates [com.example.securingweb.SecuringWebApplication, com.example.demo.Demo..