tomcat启动时报java.lang.IllegalArgumentException

阅读更多
报错内容:
严重: Error starting static Resources
java.lang.IllegalArgumentException: Document base D:\apache-tomcat-6.0.39\webapps\demo does not exist or is not a readable directory


描述:
    在tomcat下删除demo项目,从新建一个空的web项目启动就会报这个错。

原因:
    demo项目用了hibernate,tomcat就会在conf\Catalina\localhost目录下创建一个demo.xml,启动时就会加载这个文件,而webapps下没有demo自然就报不存在的错误了。
    demo.xml中的内容如下:

      type="javax.sql.DataSource"
    username="sa"
    password="sa"
    driverClassName="com.microsoft.sqlserver.jdbc.SQLServerDriver"
    url="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=demoleader"
    initialSize="10"
    maxActive="5"
    maxIdle="20"
    minIdle="5"
    maxWait="-1"
  >



解决办法:
    删掉demo.xml即可。

你可能感兴趣的:(tomcat,报错)