Glassfish 4.0 に単純な JAX-RS サービスをデプロイしようとしていますが、次のエラーが発生し続けます。
HTTP Status 404 - Not Found
type Status report
messageNot Found
descriptionThe requested resource is not available.
GlassFish Server Open Source Edition 4.0
War ファイルは Glassfish サーバーに正常にデプロイされますが、クラス ローダーがその役割を果たしておらず、残りのサービスを適切に公開していないようです。クラスが適切にロードされない理由を理解しようとしています。おそらく単純な構成変更であることはわかっていますが、見つけることができませんでした。
構成: glassfish-web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE glassfish-web-app PUBLIC "-//GlassFish.org//DTD GlassFish Application Server 3.1 Servlet 3.0//EN" "http://glassfish.org/dtds/glassfish-web-app_3_0-1.dtd">
<glassfish-web-app error-url="">
<context-root>/reports</context-root>
<class-loader delegate="true"/>
<jsp-config>
<property name="keepgenerated" value="true">
<description>Keep a copy of the generated servlet class' java code.</description>
</property>
</jsp-config>
</glassfish-web-app>
web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0"
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_3_0.xsd">
<servlet>
<servlet-name>Jersey</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Jersey</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>30</session-timeout>
</session-config>
</web-app>
REST サービス コード:
package com.esa.report.rest.service;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.UriInfo;
import javax.ws.rs.PathParam;
import javax.ws.rs.Consumes;
import javax.ws.rs.PUT;
import javax.ws.rs.Path;
import javax.ws.rs.GET;
import javax.ws.rs.Produces;
import javax.enterprise.context.RequestScoped;
import javax.ws.rs.core.MediaType;
@Path("weeklyStatusReport")
@RequestScoped
public class WeeklyStatusReportService {
@Context
private UriInfo context;
public WeeklyStatusReportService() {
}
@GET
@Path("run/{esaId}")
@Produces({MediaType.APPLICATION_XHTML_XML})
public String runReport(@PathParam("esaId") String esaId){
return("Hello esaId: "+esaId);
}
@GET
@Produces("text/html")
public String getHtml() {
return("hello this is the weekly status report");
}
@PUT
@Consumes("text/html")
public void putHtml(String content) {
}
}
戦争は /reports のルートコンテキストで展開され、私が使用している URL は次のとおりです。
http://localhost:8080/reports/rest/weeklyStatusReport/run/123