为了账号安全,请及时绑定邮箱和手机立即绑定

Start Tomcat v8.0 Server at localhost

标签:
Java

使用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编写错误会提示

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消