Arvixe web主机 - Spring MVC项目没有找到网址

时间:2014-03-28 12:43:14

标签: spring api tomcat spring-mvc

我使用Spring创建了一个API。它在localhost上完美运行。问题是当我将WAR文件部署到Arvixe(包括tomcat)时。它不会超过欢迎文件。找不到所有其他网址 - “404 Not Found”。例如,如果我输入     http://mylocaldomain.com:8080/restapi/listInstitutions/123/213/123在浏览器中返回以下JSON对象:

{"message":"You do not have permission for this      domain","error":true,"comment":null,"notifications":null,"users":null,"diagnose":null,"institution":null,"notification":null,"patient":null,"picture":null,"user":null,"comments":null,"diagnoses":null,"institutions":null,"patients":null,"pictures":null}

但是当我在Arvixe(http://www.prespetkov.com/RESTapi/listInstitutions/123/123/213)上使用已部署的API做同样的事情时,我得到“404 Not Found”

我正在使用的映射是:

@RequestMapping(value = "/listInstitutions/{appkey}/{uId}/{tokenValue}", method = RequestMethod.GET)

有没有人遇到同样的问题或熟悉托管服务?

谢谢!

1 个答案:

答案 0 :(得分:-1)

形成以下响应,看起来他们的共享tomcat实例只能与jsp一起使用!

http://forum.arvixe.com/smf/general/servlet-deployment/

我觉得有点荒谬。什么好的开发人员会这样做?