I\'m new to Spring, still learning. I\'m using Spring Tool Suite version 3.5 with Java 6 on my Mac. I\'m attempting to use BasicDataSource
You're mixing up the versions. The KeyedObjectPoolFactory
class exists in the 1.x branch of commons-pool
, but not in 2.x. You should try with commons-pool-1.5.4
instead (which is the correct version dependency for commons-dbcp-1.4
)
And may I suggest using eg. Maven to manage your dependencies - you'll get the transitive dependencies versioned correctly for free (mostly at least...)
Cheers,