0

背景

我是春天的新手。我正在使用 Spring MVC 3 和 Springsource 的 spring 工具套件。我正在运行他们提供的示例 Spring 模板。我正在为我的数据源使用 Apache DBCP。

问题

我已经能够使用注释注入 bean,但我无法让容器获取我在 servlet-context.xml 文件中定义的数据源。内容如下。如果我自动连接我的数据源,那么在任何使用它的地方都会得到一个空指针异常,表明没有注入依赖项。这适用于我尝试自动装配的任何其他类。我很确定这与我在 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 工件的一部分

在你的 pom 上添加这个。

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