Tomcate的启动问题

1、Removing obsolete files from server..
                Could not clean server of obsolete files: null
                java.lang.NullPointerException

这个错误是因为 tomcate 中的 server.xml 和 eclipse 中的 server.xml 不一致导致的

介个是你在clean tomcat的时候 文件没有clean清.(临时崩溃 系统宕机或其他原因) 
导致自己eclipse里的service.xml 在clean时没有copy一致.

解决方案:

1找到你的tomcat的文件夹.找到里面的service.xml文件(路径Tomcatconfservice.xml)

2.找到你的工作区间,
workspace.metadata.pluginsorg.eclipse.wst.server.core mpX(x为1....N,具体看你项目)conf
里找到service.xml 看看这个文件是否跟你的service.xml文件一样.

不一样则把这个2的eclipse里的临时文件替换成你的service.xml

这俩个文件要一致才能进行正常的eclipse启动tomcat.

2、Server Tomcat v7.0 Server at localhost was unable to start within 45 seconds.

If the server requires more time, try increasing the timeout in the server editor.

解决方案:

当启动tomcat时候出现 Server Tomcat v6.0 Server at localhost was unable to start within 45 seconds. If the server requires more time, try increasing the timeout in the server editor. 的错误,那表示你的tomcat启动超时了,有时候你重新启动下就好了,但有时需要重新启动很多次,如果你不想这样的话,你只需修改下tomcat的启动 时间就行了,步骤如下:

修改 workspace.metadata.pluginsorg.eclipse.wst.server.coreservers.xml文件。

<servers>

<server hostname="localhost" id="JBoss v5.0 at localhost" name="JBoss v5.0 at localhost" runtime-id="JBoss v5.0" server-type="org.eclipse.jst.server.generic.jboss5" server-type-id="org.eclipse.jst.server.generic.jboss5" start-timeout="1000" stop- timeout="15" timestamp="0">

<map jndiPort="1099" key="generic_server_instance_properties" port="8090" serverAddress="127.0.0.1" serverConfig="default"/>

</server>

</servers>

把 start-timeout="45" 改为 start-timeout="1000" 或者更长 重启eclipse就可以了。

或者在界面修改

原文地址:https://www.cnblogs.com/cfb513142804/p/5458212.html