溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Jspxcms啟動(dòng)報(bào)錯(cuò)The object cannot be set twice怎么辦

發(fā)布時(shí)間:2022-01-19 16:26:50 來源:億速云 閱讀:188 作者:iii 欄目:開發(fā)技術(shù)

本文小編為大家詳細(xì)介紹“Jspxcms啟動(dòng)報(bào)錯(cuò)The object cannot be set twice怎么辦”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“Jspxcms啟動(dòng)報(bào)錯(cuò)The object cannot be set twice怎么辦”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識吧。

如果在啟動(dòng)或訪問的時(shí)候,出現(xiàn)以下報(bào)錯(cuò)信息,是因?yàn)門omcat里的應(yīng)用啟動(dòng)了兩次。

com.jspxcms.common.fulltext.LuceneException: Error during searching.; 
nested exception is org.springframework.beans.factory.BeanCreationException: 
Error creating bean with name 'searcherManager' defined in class path resource [custom.xml]: 
Cannot resolve reference to bean 'indexWriter' while setting bean property 'indexWriter';
nested exception is org.springframework.beans.factory.BeanCreationException: 
Error creating bean with name 'indexWriter': FactoryBean threw exception on object creation;
nested exception is org.apache.lucene.util.SetOnce$AlreadySetException: The object cannot be set twice!

導(dǎo)致Tomcat應(yīng)用啟動(dòng)兩次的原因通常是因?yàn)樾薷牧藅omcat的server.xml里的host、context配置,比如程序放在tomcat/webapps目錄下,然后在server.xml里再次配置context,就會(huì)出現(xiàn)這種情況。因?yàn)樵趖omcat/webapps里的應(yīng)用本身就會(huì)啟動(dòng),然后tomcat就檢測到server.xml里配置的context,所以會(huì)再次啟動(dòng)一次。如:

<Host ...>
    <Context path="/" docBase="D:/tomcat/webapps/ROOT" />
</Host>

或者

<Host ...>
    <Context path="/" docBase="D:/tomcat/webapps/jspxcms" reloadable="true" />
</Host>

正確的做法是不要修改tomcat的server.xml配置文件中的Host、Context配置,直接將程序作為ROOT文件夾,放在tomcat/webapps目錄下。

讀到這里,這篇“Jspxcms啟動(dòng)報(bào)錯(cuò)The object cannot be set twice怎么辦”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI