[SPRING] H2 DB 연결 중 에러 정리

H2와 JPA를 사용하기 위한 기본 설정 중 PersonRepository가 스프링 빈에 등록되지 않는 에러가 발생.

해결하기 위하여 @EnableJpaRepositories를 통하여 스프링 실행 중 레파지토리를 빈에 등록할 수 있도록 하였지만 같은 에러가 발생하였다.

@Repository
public interface PersonRepository extends JpaRepository<Person, Integer> {
}
***************************
APPLICATION FAILED TO START
***************************

Description:

Parameter 0 of method init in com.ghrnwjd.httpresponsecode.data.DBinit required a bean of type 'com.ghrnwjd.httpresponsecode.data.repository.PersonRepository' that could not be found.


Action:

Consider defining a bean of type 'com.ghrnwjd.httpresponsecode.data.repository.PersonRepository' in your configuration.

확인해보니 Maven 종속을 spring-data-jpa로 해놓았었다.
이를 spring-boot-starter-data-jpa로 변경하여 해결하였다.

또한 application.yaml 파일에서 jpa.hibernate.ddl-auto=create로 해놓았음에도 다음과 같은 에러가 발생하였다.

A different object with the same identifier value was already associated with the session

찾아보니 동일한 식별자가 입력되어 발생하는 오류라고 한다.

이를 해결하기 위해 @Id어노테이션과 함께 @GeneratedValue(strategy = GenerationType.IDENTITY) 기본키 전략을 붙여 해결하였다.

하지만 엔티티에 대한 기본 생성자가 없어서 @NoArgsConstructor@AllArgsConstructor을 통해 아래 에러를 해결하였다.

No default constructor for entity

[Person.java]

@NoArgsConstructor
@AllArgsConstructor
@Data
@Entity
public class Person {

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private int personId;
    private String firstName;
    private String lastName;

    public Person(String firstName, String lastName) {
        this.firstName = firstName;
        this.lastName = lastName;
    }
}

'🍃 스프링' 카테고리의 다른 글

[SPRING] JPA 순환 참조  (0) 2023.09.11
[SPRING] ResponseDTO  (0) 2023.08.28
[SPRING] GET API Query String  (0) 2023.08.26
[SPRING] 컬렉션  (0) 2023.07.30
[SPRING] Entity, DTO  (0) 2023.07.24