7.01-關於啓動tomcat的異常處理

1.  BeanFactory沒有初始化或已經關閉java

java.lang.IllegalStateException: BeanFactory not initialized or already closed - call 'refresh' before accessing beans via the ApplicationContext

解決:web

在web.xml中,添加spring的監聽器出現的異常,系統默認加載的是spring

WEB-INF/applicationContext.xml; tomcat

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
 </listener>app

若不是默認的位置,須要更改加載的位置:
    <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:applicationContext.xml</param-value>
    </context-param>ui

 

 

2. 端口8005, 8080, 8009被佔用了。多是在打開Tomcat的狀況下關閉了Eclipse,或是Eclipse非正常關閉,致使先前的Tomcat沒有被關閉,端口占用。或是其餘軟件佔用了tomcat的端口號spa

Several ports (8005, 8080, 8009) required by Tomcat v5.5 Server at localhost are already in use. The server may already be running in another process, or a system process may be using the port

解決:code

方法1:打開任務管理器,找java虛擬機相關的進程,將其結束。server

方法2:修改Tomcat的端口號xml

相關文章
相關標籤/搜索