작성
·
367
0
안녕하세요 제가 jpa 연동 부분 수강하고 있는데
build.gradle 에서
spring-boot-starter-test 부분이 기존에 아래와 같았었는데
방법 1.
testImplementation'org.springframework.boot:spring-boot-starter-test'
이 상태에서는 아래와 같은 에러가 발생했는데
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class]: Invocation of init method failed; nested exception is org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]
Caused by: org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]
제가 spring-boot-starter-test 부분을 다음과 같이 수정하고
실행하니까 에러가 사라졌습니다.
방법 2.
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
그런데 의문이든 부분이
방법2. 로 한뒤 Reload All Gradle Project 로 고치고
프로젝트를 실행하고 나서 에러가 발생하지 않고 정상 작동 됐는데
다시 방법1. 로 하고 Reload All Gradle Project로 고치고
실행 했는데 오류 없이 정상 작동합니다..
그러면 의문이
방법2. 로 Reload 하고
다시 방법1. 로 Reload 해도
방법2로 한 부분이 gradle에 남아 있는 건가요??