Spring ์Šคํ”„๋ง java.lang.classnotfoundexception: com.sun.xml.internal.bind.v2.contextfactory ์—๋Ÿฌ ํ•ด๊ฒฐ ๋ฐฉ๋ฒ•

2021. 12. 1. 13:26ใ†Spring

728x90

์šฐ์„  ์ž๋ฐ”11์—์„œ๋Š” ํ˜ธํ™˜์„ฑ์˜ ๋ฌธ์ œ๋กœ ๋ผ์ด๋ธŒ๋Ÿฌ๋ฆฌ๊ฐ€ ๊ฝค ๋งŽ์ด ์‚ญ์ œ๋˜์—ˆ๋‹ค๊ณ  ํ•œ๋‹ค. 

๊ทธ๋ž˜์„œ JAXB๋ฅผ ์‚ฌ์šฉํ•˜๋ ค๋Š”๋ฐ classnotfoundexception์—๋Ÿฌ๊ฐ€ ๋‚˜๋ฉด์„œ ์‚ฌ์šฉํ•  ์ˆ˜ ์—†์—ˆ๋‹ค..!!

 

์ด๋ ‡๊ฒŒ ์„ธ๊ฐœ์˜ dependency๋ฅผ ์ฐธ์กฐํ•ด์ฃผ์—ˆ๋”๋‹ˆ @XmlRootElement ์–ด๋…ธํ…Œ์ด์…˜๋„ ์ž˜ ์ƒ๊ธฐ๊ณ , ์—๋Ÿฌ ๋˜ํ•œ ๋ฐœ์ƒํ•˜์ง€ ์•Š์•˜๋‹ค. 

 

 

 

1๏ธโƒฃ JAXB API 

https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api

<!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api --> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.3.1</version> </dependency>

 

2๏ธโƒฃ JAXB Core

https://mvnrepository.com/artifact/org.glassfish.jaxb/jaxb-core

<!-- https://mvnrepository.com/artifact/org.glassfish.jaxb/jaxb-core -->
<dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-core</artifactId> <version>2.3.0.1</version> </dependency>

 

3๏ธโƒฃ JAXB-impl

https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-impl

<!-- https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-impl --> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <version>2.3.1</version> </dependency>

 

 

 

 

 

 

 

 

 

 

 

 

728x90