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ファイルもあります。
Commons-dbcp-1.4.jarファイルがlibフォルダー内にあることを確認してください。 Eclipseでそれを超えてコピーする必要があります。
この画像を見る
私の場合、クラスパスにcommons-dbcp-1.4.jarを追加するだけでは機能しませんでした。 commons-pool-1.6.jarも追加する必要がありました。この post は理由を説明しています。その投稿にもダウンロードリンクがあります。
eclipseからTomcatのクリーンなディレクトリを作成し、jarファイルをダウンロードせずに動作しました