0
其中是此applicationContext.fml文件中的錯誤?swing應用程序,彈簧應用程序上下文錯誤
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource" abstract="true">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost/mostra"/>
<property name="username" value="root"/>
<property name="password" value="*****"/>
</bean>
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="mappingResources">
<list>
<value>./resources/employee.hbm.xml</value>
</list>
</property>
<property name="hibernateProperties">
<value>hibernate.dialect=org.hibernate.dialect.HSQLDialect</value>
</property>
</bean>
<bean id="hibernateTemplate"
class="org.springframework.orm.hibernate3.HibernateTemplate">
<property name="sessionFactory">
<ref bean="sessionFactory"/>
</property>
</bean>
</beans>
我得到「引用的數據源豆」是無效的(抽象的或沒有bean類和無工廠bean)....只是爲什麼?????
我使用類似的代碼在聯合國的其他應用程序,一切工作正常...
刪除,但仍然存在錯誤 – Medioman92 2012-08-05 17:16:27
完全相同的錯誤?可能是你的舊文件仍然可以在類路徑中的某個地方訪問 - 如果你有日食,請嘗試一個乾淨/刷新 – 2012-08-05 17:25:55
我將項目移動到MyEclipse並且錯誤消失了,無論如何 – Medioman92 2012-08-05 20:59:47