小さなSpring Webサービスプロジェクトに取り組んでいます。ルートの例を次に示します。
package com.example.api;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.PathParam;
import javax.ws.rs.ext.Provider;
import javax.ws.rs.core.MediaType;
@Provider
public class WebServiceRoutes {
@GET
@Path("/hello")
public String health() {
return "Hello";
}
}
次に、Spring 構成クラスで:
package com.example.api;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class SpringContextConfiguration {
@Bean( destroyMethod = "shutdown" )
public SpringBus cxf() {
return new SpringBus();
}
@Bean
public WebServiceRoutes webServiceRoutes() {
return new WebServiceRoutes();
}
}
そして最後に私のweb.xmlで:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0">
<display-name>api</display-name>
<context-param>
<param-name>contextClass</param-name>
<param-value>org.springframework.web.context.support.AnnotationConfigWebApplicationContext</param-value>
</context-param>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>com.example.api.SpringContextConfiguration</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<listener>
<listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
</listener>
<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>
ただし、これを war ファイルとして jetty にデプロイし、/api/hello を要求しようとすると、「サービスが見つかりませんでした」というメッセージが表示されます。ステータス404で。何が間違っていますか?