0

バックグラウンド

私は春が初めてです。SpringMVC3とSpringsourceのSpringツールスイートを使用しています。彼らが提供するサンプルのSpringテンプレートを実行しています。データソースにApacheDBCPを使用しています。

問題

アノテーションを使用してBeanを挿入することはできましたが、servlet-context.xmlファイルで定義したデータソースを取得するためのコンテナーを取得できません。内容は以下の通りです。データソースを自動配線すると、それが使用されるすべての場所でnullポインター例外が発生し、依存関係が注入されていないことを示します。これは、私が自動配線しようとしている他のクラスでも機能します。XMLファイルでBeanを定義する方法と関係があると確信していますが、いくつかの異なる方法を見てきましたので、自分のバージョンに何が適切かわかりません。

<?xml version="1.0" encoding="UTF-8"?>

http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring- Beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">

<!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->

<!-- Enables the Spring MVC @Controller programming model -->
<annotation-driven />

<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
<resources mapping="/resources/**" location="/resources/" />

<!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <beans:property name="prefix" value="/WEB-INF/views/" />
    <beans:property name="suffix" value=".jsp" />
</beans:bean>

<beans:bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
    <beans:property name="driverClassName" value="org.mysql.jdbc"/>
    <beans:property name="url" value="jdbc:mysql://localhost:3306/mydb"/>
    <beans:property name="username" value="root"/>
    <beans:property name="password" value="admin"/>
</beans:bean>   

<context:component-scan base-package="com.mycompany.myapp2" />

サーバーから返されるエラーの一部は

java.lang.NoClassDefFoundError:org / apache / commons / pool / KeyedObjectPoolFactory

4

1 に答える 1

0

KeyedObjectPoolFactory は commons-pool アーティファクトの一部です

これをポンに追加します。

<dependency>
    <groupId>commons-pool</groupId>
    <artifactId>commons-pool</artifactId>
    <version>1.6</version>
</dependency>
于 2012-09-18T03:37:53.990 に答える