【发布时间】:2011-11-29 11:03:27
【问题描述】:
我在尝试启动我的 Spring MVC 休眠应用程序时遇到此异常。
SEVERE: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [org.apache.commons.dbcp.BasicDataSource] for bean with name 'dataSource' defined in ServletContext resource [/WEB-INF/spring/appServlet/mysql_persistence_info.xml]; nested exception is java.lang.ClassNotFoundException: org.apache.commons.dbcp.BasicDataSource
at org.springframework.beans.factory.support.AbstractBeanFactory.resolveBeanClass(AbstractBeanFactory.java:1235)
我的 /WEB-INF/spring/appServlet/mysql_persistence_info.xml 是
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost/MyrDB"/>
<property name="username" value="user"/>
<property name="password" value="user"/>
<!-- connection pooling details -->
<property name="initialSize" value="1"/>
<property name="maxActive" value="5"/>
</bean>
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
</props>
</property>
<property name="annotatedClasses">
<list>
<!-- all the annotation entity classes -->
</list>
</property>
</bean>
</beans>
我有 classapath 中所需的所有 jar 文件。 我正在使用 STS。
我也有 commons-dbcp.jar 和所有其他的 jar 文件。
【问题讨论】:
-
在 STS / eclipse 类路径中包含 jars 是不够的 - 它们应该在 web-inf\lib 文件夹中 - 如果您尝试将其作为 webapp 运行。
-
对于 STS,我真的不知道 web-inf/lib 路径在哪里。我查看了 web app 目录,没有 web-inf/lib 文件夹。
标签: hibernate spring-mvc sts-springsourcetoolsuite