我用过tomcat 7和netbeans 7.4
当我启动我的网络应用程序时,我得到
无法部署模块。context.xml 文件似乎已损坏。检查它是否格式正确且有效。该模块尚未部署。
这是我的 context.xml 文件
<?xml version='1.0' encoding='utf-8'?>
<Context>
<Resource name="jdbc/shareDS" auth="Container" type="javax.sql.DataSource"
maxActive="50" maxIdle="10" maxWait="100000"
username="${db.user}" password="${db.password}" driverClassName="com.mysql.jdbc.Driver"
url="${db.url}"
timeBetweenEvictionRunsMillis="1800000" autoReconnect="true"
removeAbandoned="true" removeAbandonedTimeout="300" logAbandoned="true"/>
</Context>
当我尝试验证我的上下文文件时,我得到
Cannot find the declaration of element 'Context'. [19]
任何想法?