问题描述
在用 Groovy 连接 MySQL 数据库的时候遇到了一个问题,程序如下:
def sql = groovy.sql.Sql.newInstance('jdbc:mysql://localhost:3306/weatherinfo', 'root', 'password', 'com.mysql.jdbc.Driver')
println sql.connection.catalog
遇到错误:
Caught: java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
at Weather.run(Weather.groovy:1)
解决办法
添加如下两行
@Grab('mysql:mysql-connector-java:5.1.25')
@GrabConfig(systemClassLoader = true)
def sql = groovy.sql.Sql.newInstance('jdbc:mysql://localhost:3306/weatherinfo', 'root', 'password', 'com.mysql.jdbc.Driver')
println sql.connection.catalog
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于