Tomcat 配置文件 ../context.xml 似乎被破坏了。请确保它是可解析的和有效的。有关详细信息,请参阅服务器日志

Tomcat configuration file ../context.xml seems to be broken. Please make sure it is parsable and valid. See the server log for details

我正在制作一个简单的连接池。当我尝试 运行 这个项目时,我遇到了这个错误。
Tomcat 配置文件../context.xml 好像坏了。请确保它是可解析的和有效的。有关详细信息,请参阅服务器日志。
这是我的上下文文件。项目名称是 TomPool1

<Context antiJARLocking="true" path="/tomPool1"/>
<Resource name="connpool" auth="Container" type="javax.sql.DataSource"

      maxActive="100" maxIdle="30" maxWait="10000"

      username="root" password="access99" driverClassName="com.mysql.jdbc.Driver"

      url="jdbc:mysql://localhost:3306/connpool"/>

 </Context>


我在网上厌倦了很多问题的答案。但是这个错误并没有修复。请帮助我。

编辑 1
当我尝试验证 context.xml 时,出现此错误。
cvc-elt.1: 找不到元素 'Context' 的声明。 [3]

您正在使用 </tag /> 语法关闭上下文元素。

换行:

<Context antiJARLocking="true" path="/tomPool1"/>

收件人:

<Context antiJARLocking="true" path="/tomPool1">