两个错误的解决方案

Posted 镇屌

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了两个错误的解决方案相关的知识,希望对你有一定的参考价值。

Element web-app must be declared

这是部署描述符版本问题导致的

解决办法换成如下配置:

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee     http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1">

参考Element web-app must be declared错误解决办法

maven请求servlet报cannot be cast to javax.servlet.Servlet 解决

在pom.xml的servelet-api里面加入

<scope>provided</scope>

完整内容

        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>3.1.0</version>
            <scope>provided</scope>
        </dependency>

原因,依赖jar包跟tomcat冲突。

参考maven请求servlet报cannot be cast to javax.servlet.Servlet 解决

以上是关于两个错误的解决方案的主要内容,如果未能解决你的问题,请参考以下文章

错误记录Flutter 混合开发获取 BinaryMessenger 报错 ( FlutterActivityAndFragmentDelegate.getFlutterEngine() )(代码片段

片段中的 Xamarin Android Google 地图错误

Kotlin学习之旅解决错误:kotlin.NotImplementedError: An operation is not implemented: Not yet implemented(代码片段

NDK: ant 错误 [javah] Exception in thread "main" java.lang.NullPointerException 多种解决办法(代码片段

我的C语言学习进阶之旅解决 Visual Studio 2019 报错:错误 C4996 ‘fscanf‘: This function or variable may be unsafe.(代码片段

我的C语言学习进阶之旅解决 Visual Studio 2019 报错:错误 C4996 ‘fscanf‘: This function or variable may be unsafe.(代码片段