我正在开发一个使用rest webservices的应用程序,其中从.js文件调用了uri。
var invokeWS = "/resource/domain/program/tasks";
jQuery.getJSON(invokeWS ,data)
在查看所有jar的时候,我发现对应于程序的类存在于一个包“com.company.project.webapps.util.rest.service”中,如下所示
package com.company.project.webapps.util.rest.service;
@Path("/program")
public class Program extends RS
{
@Path("/tasks")
@GET
public get...()
{
}
}
我没有在web.xml中看到任何映射url,但是通过.js进行的webservice调用会选择正确的路径并调用服务。
如果可以通过任何其他方式实现这一点,请告诉我,因为我在应用程序的web.xml中没有看到任何条目。
由于 Awanish