Java Restful Service eclipse tomcat HTTP Error 404

穿精又带淫゛_ 提交于 2019-12-04 04:37:19

问题


i try to keep up with a java rest service. So i found some tutorials, which explain always the same way. But i cant get this running :(.

I made Dynamic Web Project in Version 2.5 and Tomcat 7.0 in eclipse. Then i load following jars to WEB-INF/lib

My Projectname is com.freespots.rest. I created following web.xml

Ok now iam going to create the java-class right? Well i did it Java Resources/src/com.freespots.rest.service:

If i start Tomcat and type url to my browser like localhost:8080/com.freespots.rest the Tomcat shows my index.html file. But if i go to url localhost:8080/com.freespots.rest/api/hello there is just a HTTP 404 Error:

Well iam new to Java Webdevelopment and i cant figure out my Problem. I hope some guy can explain my mistake. Thanks in advance.


回答1:


You're using the old (1.x) Jersey configuration. In Jersey 2.x, the class namescpaces and property names have changed. You should instead use

<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
    <param-name>jersey.config.server.provider.packages</param-name>
    ...

See other deployment options here




回答2:


localhost:8080/com.freespots.rest this URL will run welcome page which is index.html as you said, and localhost:8080/com.freespots.rest/api/hello here no page found so 404 not found error. Try to put @Path("name") above method and call localhost:8080/com.freespots.rest/api/hello/name



来源:https://stackoverflow.com/questions/30767165/java-restful-service-eclipse-tomcat-http-error-404

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!