我想在 URL 上有两个资源: /apps
和/apps/runs
.
因此,我创建了如下所示的资源。我Spring
用于对象注入。当我使用这种方式时,我正在404 error for HTTP get requests
使用/apps/runs
. 难道我做错了什么?
这是我的代码:
@Scope("prototype")
@Path("/apps")
public class ManufacturersResource {
@GET
@Produces("application/xml")
public List<Applications> getApplications() {
return apps.findAll();
}
}
@Scope("prototype")
@Path("/apps/runs")
public class ManufacturersResource {
@GET
@Produces("application/xml")
public List<ApplicationInstances> getApplicationInstances() {
return appInstances.findAll();
}
}