티스토리 뷰
Dev./persistence
[jooq] gradle 환경에서 java.lang.ClassNotFoundException: jakarta.xml.bind.annotation.XmlSchema가 발생하는 오류
인쥭 2022. 2. 8. 18:48반응형
참고사항
원인
If the code generation fails with exceptions about not finding certain JAXB classes,
it is likely due to a 3rd-party plugin or your own build adding some dependency rules that enforce certain dependency versions that are not matching what is needed by the jOOQ code generation tool.
For example, the Spring Dependency Management Gradle plugin will downgrade the jakarta.xml.bind:jakarta.xml.bind-api dependency to a version not compatible with the jOOQ code generation tool and leads to the error below.
This issue provides some insights on how to debug such cases.
- 써드파티 플러그인 또는 개발자가 추가한 종속성 규칙이 jooq code generation에 필요한 종속성 버전과 맞지 않는 버전을 강제할 수 있다고 함.
- 예를 들어, io.spring.gradle:dependency-management-plugin 은 jooq의 code generation에 필요한 종속성인 jakarta.xml.bind:jakarta.xml.bind-api 을 호환되지 않는 버전으로 다운그레이드하며, 이로 인해 다음과 같은 버그 메시지가 발생할 수 있음.
대처
- 호환되는 버전으로 jakarta.xml.bind-api를 dependencies에 명시한다.
- 예를 들어, jakarta.xml.bind:jakarta.xml.bind-api:3.0.1 을 추가한 후 code generation을 다시 실행할 수 있다.
dependencies {
// 생략
jooqGenerator 'jakarta.xml.bind:jakarta.xml.bind-api:3.0.1' // 추가되었음
}
'Dev. > persistence' 카테고리의 다른 글
[pgloader] libsybdb.dylib 에러 해결 방법(mac) (0) | 2022.04.18 |
---|---|
[pgloader] m1 pgloader 설치 (0) | 2022.04.13 |
[mysql] case 문법 (짧) (0) | 2021.12.23 |
[mysql] 컬럼 이름이 'Key'인 경우 select하기 (짧) (0) | 2021.12.14 |
[mysql] 복합키용 컬럼에 SHA 256 적용하기 (1) | 2021.11.12 |
댓글
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- shell
- Vault
- terraform
- kotlin
- mysql
- IntelliJ
- hashicorp
- JEST
- react
- AWS IoT
- Linux
- jQuery
- Gradle
- dev
- AWS
- 코딩테스트
- Git
- Docker
- Puppeteer
- Java
- Node.js
- Database
- javascript
- pgloader
- JPA
- Spring Cloud Config
- eureka
- postgresql
- etc
- spring boot
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함