Unknown Entity, JPA 엔티티 인식 오류
·
자바스프링
JPA와 스프링을 공부하면서 db에 JPA로 값을 넣는 것을 진행하고 있었다. 순조롭게 진행되고 있었는데, 스프링에서 Entity를 인식하지 못하는 오류가 발생했다. domain -> Member package com.example.spring.domain; import org.springframework.boot.autoconfigure.domain.EntityScan; import org.springframework.context.annotation.Configuration; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; @Entity public class Member { @I..