无法访问已部署的Heroku应用上的特定路由(找不到404)

时间:2019-04-25 02:23:14

标签: web-services heroku deployment http-status-code-404 paas

所以我有一个具有特定路由的Web应用程序:http://localhost:28389/WebServiceTestingAuthentification/webresources/teachers/这将返回一个测试json对象,如下所示: enter image description here

我在heroku上部署了该应用程序,但是当我尝试访问相同的路由时,出现404 Not found错误: s

这是我的老师服务:

@Path("teachers")
public class TeacherService {

public TeacherService() {
}

@GET
@Produces({MediaType.APPLICATION_JSON})
public Response getTeachers() throws Exception {
    return getResponse(new response.AuthorizationResponse(BaseResponse.SUCCESS, "Hello my private teachers", "jlk"));

}

protected Response getResponse(Object o) {
    return Response.ok(o)
            .build();
}
}  

0 个答案:

没有答案