依存性注入のためにSpringを使用してCXF/MavenWebサービスを作成しています。以下は私のWebサービスコードです:-
@Path("/myws")
public interface IMyWebService {
@POST
@Path("/someAction")
@Consumes("application/json")
@Produces("application/json")
MyResponse requestSomeAction(MyRequest requestObj);
}
@Service("myWebService")
public class MyWebService implements IMyWebService {
@Autowired
private IMyCoreService myCoreService;
public MyResponse requestSomeAction(MyRequest requestObj) {
// do some work
return myResponse;
}
}
そして私のapplicationContext.xmlで...
<context:component-scan base-package="com.company.project" />
<bean id="myCore" class="com.company.project.module.MyCoreService" />
<jaxrs:server id="restContainer" address="/">
<jaxrs:serviceBeans>
<bean class="com.company.project.module.MyWebService" />
</jaxrs:serviceBeans>
<jaxrs:features>
<cxf:logging />
</jaxrs:features>
<jaxrs:providers>
<bean class="org.codehaus.jackson.jaxrs.JacksonJaxbJsonProvider" />
</jaxrs:providers>
</jaxrs:server>
JBossフォルダー内のCXFライブラリーを使用するために、提供されたスコープですべてのCXF依存関係にマークを付けました。必要な依存関係を満たすために、次のjarファイルをJBossのdefault\libフォルダーにコピーする必要がありました。
cxf-rt-frontend-jaxrs.jar
aopalliance.jar
spring core jars
org.springframework.orm-3.0.0.RELEASE.jar
org.springframework.jdbc-3.0.0.RELEASE.jar
org.springframework.beans-3.0.0.RELEASE.jar
org.springframework.context-3.0.0.RELEASE.jar
com.springsource.org.hibernate.ejb-3.4.0.jar
私のアプリサーバーはJBossです。戦争を展開してサーバーを起動すると、次のエラーが発生します:-
Caused by: java.net.MalformedURLException: no protocol: /
at java.net.URL.<init>(URL.java:567) [:1.6.0_33]
at java.net.URL.<init>(URL.java:464) [:1.6.0_33]
at java.net.URL.<init>(URL.java:413) [:1.6.0_33]
at org.jboss.wsf.stack.cxf.addons.transports.httpserver.HttpServerDestination.<init>(HttpServerDestination.java:67) [:3.4.1.GA]
at org.jboss.wsf.stack.cxf.addons.transports.httpserver.HttpServerTransportFactory.createDestination(HttpServerTransportFactory.java:102) [:3.4.1.GA]
at org.jboss.wsf.stack.cxf.addons.transports.httpserver.HttpServerTransportFactory.getDestination(HttpServerTransportFactory.java:91) [:3.4.1.GA]
at org.apache.cxf.endpoint.ServerImpl.initDestination(ServerImpl.java:92) [:2.3.1]
at org.apache.cxf.endpoint.ServerImpl.<init>(ServerImpl.java:71) [:2.3.1]
at org.apache.cxf.jaxrs.JAXRSServerFactoryBean.create(JAXRSServerFactoryBean.java:95) [:2.3.1]
「/」は、applicationContext.xmlで指定されたサービス定義で指定されたアドレスだと思います。上記のエラーが発生するのはなぜですか?また、どうすれば解決できますか?あなたの助けは大歓迎です。