250x250
Notice
Recent Posts
Recent Comments
«   2024/09   »
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
Tags more
Archives
Today
Total
관리 메뉴

개린이 개발노트

[Spring]스프링Spring 라이브러리 본문

스프링Spring

[Spring]스프링Spring 라이브러리

개린이9999 2022. 11. 29. 21:56
728x90

Maven Repository: Search/Browse/Explore (mvnrepository.com)

 

jackson-databind 클릭

Maven Repository: com.fasterxml.jackson.core » jackson-databind (mvnrepository.com)

Maven Repository: com.fasterxml.jackson.core » jackson-databind » 2.9.10 (mvnrepository.com)

<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <version>2.9.10</version>
</dependency>

 

//붙여넣기//

 

들어온 것 확인


jackson dataformat xml 검색후 2.9.10 버전 찾아서 복사 붙여넣기 


<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-xml -->
<dependency>
    <groupId>com.fasterxml.jackson.dataformat</groupId>
    <artifactId>jackson-dataformat-xml</artifactId>
    <version>2.9.10</version>
</dependency>

완료!

728x90