Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用JDK7和tomcat7,在编译我的servlet并将相关文件从我的项目目录复制到tomcat服务器目录之后。但是当我想在我的浏览器中运行servlet时,我得到了错误404-resource not available。
你的 servlet 很好。我在我的机器上测试了它,它可以工作。
web.xml不应包含在;命名空间声明之后,但这可能是复制粘贴的结果(http://前缀在您的答案中也不可见)。
web.xml
;
http://
检查目录结构是否符合要求,然后重启Tomcat。我建议将项目编译为 war 文件,而不是将项目目录中的多个文件复制粘贴到 Tomcat。