404很可能是路径配置的问题根据错误提示
检查jsp页面的路径还有,jsp中的路径
最好不要写死,以便移植起来方便比如http://localhost:8080之类的 很可能造成在本机没问题 而用其他的机器访问找不到网页的情况比较好的办法就是把路径写活
例如<% String path = request.getContextPath();String basePath = request.getScheme() + "://"+request.getServerName() + ":" + request.getServerPort()+ path + "/";%>使用的时候用basePath加其他的路径