java-tomcat启动后跳转servlet404
Posted yinchrn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java-tomcat启动后跳转servlet404相关的知识,希望对你有一定的参考价值。
在启动tomcat后跳转servlet404报错
检查路径后确认没有错误,tomcat没有异常。
对于新版本tomcat
需要把maven的依赖中的javax.servlet更换为jakarta.servlet
同时web.xml的版本为也为新版
web.xml配置
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"
version="5.0">
</web-app>
jakarta依赖配置
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
以上是关于java-tomcat启动后跳转servlet404的主要内容,如果未能解决你的问题,请参考以下文章