commons-io commons-io 1.4
Showing posts with label Maven_dependencies. Show all posts
Showing posts with label Maven_dependencies. Show all posts
Wednesday, 14 December 2011
Friday, 4 November 2011
Spring configuration error: Could not load JDBC driver class [com.mysql.jdbc.Driver]
Configuration error for Spring:
Could not load JDBC driver class [com.mysql.jdbc.Driver]
Solution: add to pom.xml
Solution: add to pom.xml
<!--
- MySQL database driver
- GlassFish contains it / Tomcat needs it
- handles error "Could not load JDBC driver class [com.mysql.jdbc.Driver]"
-->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.10</version>
</dependency>
Subscribe to:
Posts (Atom)