1
がどのようにヌルHI =以下のURLのパラメータPathParmを提供する方法 - JAX-RS
http://localhost:8080/entry-point/test/のために私にヌル出力を与える
@Path("/entry-point")
public class EntryPoint
{
private final Logger logger = Logger.getLogger(EntryPoint.class);
@GET
@Path("test")
public Response test(@PathParam("param") String param)
{
logger.info("Received message " + param);
String output = "Hi : " + param;
return Response.status(200).entity(output).build();
}
@GET
@Path("/{test2}")
public String test2(@PathParam("param") String param)
{
logger.info("Received message " + param);
return "yo";
}
}
次の方法の中で変数を渡すん http://localhost:8080/entry-point/test/value = 404エラー
ありがとう