@Path . @Path, @GET, @POST, @PUT, @HEAD .. @GET .
"time" :
@Path("/time")
public class TimeResource {
@GET
public static String time(){
return Instant.now().toString();
}
}
"" :
public class MyResource{
@Path("/time")
public static final class TimeResource {
@GET
public static String do(){
return Instant.now().toString();
}
}
@Path("/doSomethingElse")
public static final class DoSomethingElseResource {
@GET
public static String do(){
}
}
}
, , . , , .