macos에서 maven install시 아래와 같은 오류가 발생했을경우
(환경이 java9일떄 방생하는 문제인듯)
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigu)re/orm/jpa/HibernateJpaConfiguration.class]: Invocation of init method failed; nested exception is java.lang.NoClassDefFoundError:
javax/xml/bind/JAXBException
--------------------------
pom.xml에 아래내용을 추가하여 해결
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.0</version>
</dependency>
'Programming > Error' 카테고리의 다른 글
[npm] Module build failed: Error: "extract-text-webpack-plugin" loader is used without the corresponding plugin, (0) | 2018.02.19 |
---|---|
[thymeleaf] springboot + org.thymeleaf.exceptions.TemplateInputException (0) | 2017.07.14 |
[gradle] build 시 jdk tools.jar 에러 날 경우 (0) | 2016.09.23 |
[Error]윈도우7~10 CMD 한글깨짐 (0) | 2016.05.20 |
[casperjs] 윈도우 환경 실행시 did you install phantomj? (0) | 2016.05.19 |