关于Glassfish休息申请的404

时间:2014-10-15 14:18:51

标签: java rest glassfish

我有一个REST应用程序,我发誓昨天工作。今天所有路径,包括其余路径,都给出了404

我们的REST根目录在此处定义:

@ApplicationPath("/rest")
public class RestApplication extends Application
{
}

我个人的过程就是这样:

@Stateless
@Path("/profileService")
public class ProfileSettingsComposite extends BaseComposite {
...
@GET
@Produces(MediaType.APPLICATION_JSON)
@Path("/ContactPreferences")
@LoggerConfig(logType = "ERROR")
@Interceptors(value = { ExceptionHandler.class, MetricLogger.class, MethodLogger.class, MethodCacher.class })
public GetContactTypeComposite getContactPreferences(...

所以我应该能够点击我的网络服务

localhost:8080/ma-ejb/rest/profileService/ContactPreferences?blahparamblah

我已确认该应用程序已在管理控制台中部署到glassfish。以前有人见过这样的事吗?

0 个答案:

没有答案