Exception :-
First ensure that you have included commons-collections and commons-dbcp jar in classpath. Click here to download commons-collections and commons-dbcp jar
If you are using maven then add following dependency in pom.xml
Caused by: java.lang.ClassNotFoundException: org.apache.commons.dbcp.BasicDataSource
First ensure that you have included commons-collections and commons-dbcp jar in classpath. Click here to download commons-collections and commons-dbcp jar
If you are using maven then add following dependency in pom.xml
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.1</version>
</dependency>
<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
<version>1.4</version>
</dependency>