第一個bug前端
這個bug 是啓動進項目時就有的,也就是找不到路徑。但是我只作的單個模塊,那麼怎麼會連一個整的項目都進不去呢?java
Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from file [D:\TOMCAT\apache-tomcat-8.0.33\webapps\box-dms\WEB-INF\classes\spring-mvc-hibernate.xml]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'activityService' for bean class [com.chwis.box.activity.service.impl.ActivityServiceImpl] conflicts with existing, non-compatible bean definition of same name and class [com.chwis.box.activity.activitylist.service.impl.ActivityServiceImpl]
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:414)
web
對應的bug就是這個看到了沒,這個就是service層的衝突。那麼怎麼解決呢?原來我把service複製到了不一樣的文件夾裏面,致使他們出現衝突。只要刪除一個就行了。spring
第二個異常數據庫