안녕하세요.
고코더 입니다.
가장 많이 사용하는 버전
● 1. JSON을 다루는 라이브러리 중에 작은 파일 마이크로 서비스 최적화 되어 있는 GSON을 스프링에 설치하는 방법을 알아보겠습니다. 우선 해당 라이브러리에서 가장 많이 사용하는 버전을 알아보겠습니다. 현재 가장 많은 개발자들이 이용하는 버전은 2.8.5 입니다.
https://mvnrepository.com/artifact/com.google.code.gson/gson
설치
● 2. 설치 방법은 각 환경에 빌드 도구에 따라 다릅니다. 자신의 환경에 맞게 의존성을 주입하세요.
메이븐 환경에서 설치
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version>
</dependency>
그래들 환경에서 설치
// https://mvnrepository.com/artifact/com.google.code.gson/gson
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
SBT 환경에서 설치
// https://mvnrepository.com/artifact/com.google.code.gson/gson
libraryDependencies += "com.google.code.gson" % "gson" % "2.8.5"
'IT_Developers > JAVA' 카테고리의 다른 글
Spring - GSON, 배열로JSON 만들기 / JsonObject() (0) | 2022.02.24 |
---|---|
Spring - GSON 으로 직접 JSON 객체 만들기 / JsonObject() (0) | 2022.02.24 |
Spring - @Controller, @RestController 차이 (0) | 2022.02.23 |
JAVA - 자바 API 문서 보는 방법 (0) | 2022.02.21 |
Spring Boot 1.x 버전은 사용하지 마세요! 지원 종료 (0) | 2022.02.17 |
댓글