使用eclipse编写简单的servlet+jsp时候,复制了其他地方的的servlet到新的项目中。编写基本逻辑(在XML配置servlet,编写基本跳转代码)后发现运行项目弹出框提示这个:
'Start Tomcat v8.0 Server at localhost' has encountered a problem.
Server Tomcat v8.0 Server at localhost failed to start.
查找以后发现是原来的
@WebServlet(asyncSupported = true, urlPatterns = { "/TestServlet1" })
一起复制过来,更改以后即可,
PS:别人的经验附上:
解决方法一:
去掉类上面的@WebServlet("/HelloWorld")。在web.xml写<servlet-mapping>。
5
解决方法二:
在web.xml里不写 <servlet-mapping>,而要保留@WebServlet("/HelloWorld")。如下web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
<display-name>HelloWorld</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>helloworld</servlet-name>
<servlet-class>HelloWorld</servlet-class>
</servlet>
</web-app>
END
注意事项
1.以上提示错误不一定是servlet映射错误就会出现。servlet没有注册也会提示,或者web.xml编写错误会提示
共同学习,写下你的评论
评论加载中...
作者其他优质文章