tomcat 6 및 postgresql을 사용하는 tomcat 프로젝트에서 web.xml의 org.apache.commons.dbcp.BasicDataSource를 bean으로 구성하려고합니다. 9.1 java.lang.NoClassDefFoundError : org/apache/commons/pool/impl/GenericObjectPool
내 servletdispacher.xml
`
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/jsp/"
p:suffix=".jsp" />
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="org.postgresql.Driver" />
<property name="url" value="jdbc:postgresql://localhost:5432/car" />
<property name="username" value="postgres" />
<property name="password" value="123" />
</bean>
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="annotatedClasses">
<list>
<value>DAOModel.Tblusers</value>
</list>
</property>
<property name="dataSource" ref="dataSource" />
<property name="packagesToScan" value="DAOModel.Tblusers" />
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</prop>
<prop key="hibernate.transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
</props>
</property>
</bean>
` 및 오류가 얻을 수있는 :
javax.servlet.ServletException: Servlet.init() for servlet dispatcher threw exception
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:859)
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588)
org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
java.lang.Thread.run(Thread.java:724)
netbeans에서 사용하고 web-inf \ lib에 commons-pool2-2.1.jar가 있습니다. – ATJVS
그래, 틀렸어. 그러나 귀하의 질문 제목 (NoClassDefinitionFound) 에서이 오류는 귀하의 배포에있는 모든 병에서 아무도 "org.apache.commons.pool.impl.GenericObjectPool"클래스를 가지고 의미합니다. "Tattletale"도구를 사용하여 프로젝트 병 내부에서 진행되는 작업을 확인하는 것이 좋습니다. – mcsilvio