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>
사용법 및 예제는 아래 사이트 참고
'웹 개발(OLD) > Spring Framework(OLD)' 카테고리의 다른 글
컨트롤러에서 브라우저로부터 받은 파라미터 파싱 후 뷰로 값 전달 (0) | 2016.06.24 |
---|---|
jqGrid (0) | 2016.06.18 |
Spring Batch 프로그램 - 어노테이션 방식 (2) | 2016.05.12 |
Spring AOP (0) | 2016.04.15 |
Spring Transaction 처리 (0) | 2016.04.15 |