2011-12-23から1日間の記事一覧

Spring 3.0 RestTemplate API を試す

RestTemplate API を使って Twitter の TimeLine を表示する簡単なサンプルを作ってみる。 まずは、以下のMaven検索サイトで最新のものを調べた。 http://mvnrepository.com/artifact/org.springframework pom.xml に「spring-web」を追加する。 <dependencies> <dependency> <groupId>org.sprin</groupid></dependency></dependencies>…

Twitter の Json を Jackson でパースする

前回の続き。 Spring3 の RestTemplate API で Twitter から取得した Json を Jackson を使ってパースする。 前回の pom.xml に Jackson を追加する。 <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>3.0.6.RELEASE</version> </dependency> <dependency> <groupId>org.codehaus.jackson</groupid></dependency></dependencies>