본문 바로가기

웹 개발(OLD)/Spring Framework(OLD)

JAVA Object, JSON 변환 (GSON 라이브러리)

1. Gson 라이브러리는 아래 코드를 스프링의 pom.xml에 추가함으로서 메이븐으로 받을 수 있다.

<dependencies>
    <!--  Gson: Java to Json conversion -->
    <dependency>
      <groupId>com.google.code.gson</groupId>
      <artifactId>gson</artifactId>
      <version>2.6.2</version>
      <scope>compile</scope>
    </dependency>
</dependencies>

사용법 및 예제는 아래 사이트 참고

http://emflant.tistory.com/47