jaxb-api 라이브러리가 설치되지 않아서 발생하는 오류이다.
gradle
// https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api
implementation 'javax.xml.bind:jaxb-api:2.4.0-b180830.0359'
maven
<!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.4.0-b180830.0359</version>
</dependency>
이 글을 미래에서 보고 있다면 주석의 링크 주소로 들어가서 최신 버전으로 바꿔주면 된다.
'Java > Spring Boot' 카테고리의 다른 글
[SpringBoot] 서버 시작 시 에러 (0) | 2024.05.11 |
---|---|
[SpringBoot] Spring Seurity 정리 (0) | 2024.05.11 |
[SpringBoot] input 태그의 date 타입을 자바 Date 객체로 파싱하기 (0) | 2024.05.11 |
[Spring Boot] gmail 전송하기 (0) | 2024.05.11 |
[SpringBoot] CORS 대응 (0) | 2022.12.07 |