Apache CXFでRESTプログラミング
RESTのWebサービスを作ろうと思い、Apache CXFを動かしてみました。
CXFをダウンロードして、samplesのjax_rs/basicをサンプルにある独自のサーバでは無く、warの構造にしてjettyで実行してみます。
まずは、pom.xml
次はweb.xmlです。
ここで注意点はweb-appにmetadata-complete="true"を追加することです。
まだ、よく分かってないんですが、これを付けずに実行するとExceptionが出て、ぐぐってみるとこれがないとJettyでversion=2.5で発生するそうです。
次に作成したクラスを定義するXML、deploy-context.xmlです。これはweb.xmlと同じところにおきます。
あとは、jax_rs/basicの中にあるサーバ側のソースを指定のpackageにおいてコンパイルすればOKです。
で、mvn jetty:runで実行してhttp://localhost:8080/customerservice/customers/123にアクセスすれば
が返って来ます。
JavaのソースはほとんどPOJOなんですが、アノテーションでアクセスするパスを記述すると簡単にURLにマッピングできます。
また、戻り値のXMLはJavaのBeanクラスをマッピングしたものを自動で生成してくれます。
RESTプログラミングするには、CXFがかなり便利です。
CXFをダウンロードして、samplesのjax_rs/basicをサンプルにある独自のサーバでは無く、warの構造にしてjettyで実行してみます。
まずは、pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>jp.uniquevision</groupId>
<artifactId>web</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>engine Maven Webapp</name>
<url>http://maven.apache.org</url>
<properties>
<jetty>7.1.0.v20100505</jetty>
<cxf>2.2.8</cxf>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle-jaxrs</artifactId>
<version>${cxf.version}</version>
</dependency>
</dependencies>
<build>
<finalName>web</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
<downloadSources>true</downloadSources>
<wtpversion>2.0</wtpversion>
</configuration>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>${jetty.version}</version>
<configuration>
<scanIntervalSeconds>10</scanIntervalSeconds>
<webAppConfig>
<contextPath>/</contextPath>
</webAppConfig>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
次はweb.xmlです。
<?xml version="1.0" encoding="UTF-8"?>
<web-app metadata-complete="true" version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<display-name>Archetype Created Web Application</display-name>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/deploy-context.xml</param-value>
</context-param>
<servlet>
<servlet-name>CXFServlet</servlet-name>
<servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>CXFServlet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
</web-app>
ここで注意点はweb-appにmetadata-complete="true"を追加することです。
まだ、よく分かってないんですが、これを付けずに実行するとExceptionが出て、ぐぐってみるとこれがないとJettyでversion=2.5で発生するそうです。
次に作成したクラスを定義するXML、deploy-context.xmlです。これはweb.xmlと同じところにおきます。
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jaxrs="http://cxf.apache.org/jaxrs"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/jaxrs
http://cxf.apache.org/schemas/jaxrs.xsd"
default-lazy-init="false">
<import resource="classpath:META-INF/cxf/cxf.xml" />
<import resource="classpath:META-INF/cxf/cxf-extension-jaxrs-binding.xml" />
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
<jaxrs:server id="myService" address="/">
<jaxrs:serviceBeans>
<ref bean="customerService" />
</jaxrs:serviceBeans>
<jaxrs:extensionMappings>
<entry key="xml" value="application/xml" />
</jaxrs:extensionMappings>
</jaxrs:server>
<bean id="customerService" class="jp.uniquevision.CustomerService" />
</beans>
あとは、jax_rs/basicの中にあるサーバ側のソースを指定のpackageにおいてコンパイルすればOKです。
で、mvn jetty:runで実行してhttp://localhost:8080/customerservice/customers/123にアクセスすれば
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><Customer><id>123</id><name>John</name></Customer>
が返って来ます。
JavaのソースはほとんどPOJOなんですが、アノテーションでアクセスするパスを記述すると簡単にURLにマッピングできます。
また、戻り値のXMLはJavaのBeanクラスをマッピングしたものを自動で生成してくれます。
RESTプログラミングするには、CXFがかなり便利です。
<<アクセスログテーブルを作る | HOME | Butterfly PersistenceをGuiceで使う>>
COMMENTS
COMMENT FORM
TRACKBACK
| HOME |