테스트 사용도 하지 않는데 Test 쪽에서 빌드하다가 에러가 난다. > Task :test DomainRegistryApisApplicationTests > contextLoads() FAILED java.lang.IllegalStateException at DefaultCacheAwareContextLoaderDelegate.java:132 Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException at ConstructorResolver.java:800 Caused by: org.springframework.beans.factory.BeanCreationException at ConstructorResolver.java:65..
스키마를 새로 생성한 뒤 해당 스키마에서 테이블을 생성한 경우에 SchemaManagementException이 떨어질 수 있다. 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 javax.persistence.PersistenceException: [Persist..
올리려는 소스가 있는 터미널 창에서 git을 초기화 한다. apis % git init Initialized empty Git repository in /Users/jane/IdeaProjects/applications/apis/.git/ 현재 위치한 폴더에 존재하는 모든 소스를 추가한다. apis % git add --all 커밋한다. apis % git commit -m "Initial Commit" [master (root-commit) 6943408] Initial Commit 10 files changed, 436 insertions(+) create mode 100644 .gitignore create mode 100644 build.gradle.kts create mode 100644 gra..