解决spring boot Cannot load driver class: org.h2.Driver报错

// https://mvnrepository.com/artifact/com.h2database/h2
testCompile group: 'com.h2database', name: 'h2', version: '1.4.200'

将这个改为

// https://mvnrepository.com/artifact/com.h2database/h2
compile group: 'com.h2database', name: 'h2', version: '1.4.200'

再导入

如果是maven的
如下







        
            com.h2database
            h2
            runtime
        
 

你可能感兴趣的:(Java)