專案中遇到的bug

JacobGo發表於2017-10-26

啟動tomcat 卡在Initializing Spring root WebApplicationContext


網上很多人出這個問題是由於資料庫的配置檔案的原因。

除此以外,我覺得很有可能是zookeeper釋出服務沒有成功,可以嘗試重啟zookeeper虛擬機器,然後重新發布服務。



org.springframework.beans.factory.BeanCreationException: Error creating bean with name 


很可能是使用註解@Service 的時候導包導錯了  例如“import com.alibaba.dubbo.config.annotation.Service;”

正確的應該是spring中的service包,即 import org.springframework.stereotype.Service;

相關文章