java ClassNotFoundException for org.h2.Driver

前端 未结 13 2537
被撕碎了的回忆
被撕碎了的回忆 2021-01-01 10:40

I am trying to use H2 to connect to a database in Java (using Eclipse as the IDE). The sample does (below) throws a ClassNotFoundException. The thing is, I

13条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-01 11:23

    If you use Gradle change dependency in build.gradle:

    testCompile group: 'com.h2database', name: 'h2', version: '1.4.199'
    

    to

    compile group: 'com.h2database', name: 'h2', version: '1.4.199'
    

提交回复
热议问题