Database not found, and IFEXISTS=true, so we cant auto-create it

后端 未结 17 3007
不思量自难忘°
不思量自难忘° 2020-12-15 06:20

I am getting error after opening the h2 database console. I enter database name but it is showing database not found error:

Database \"C:/Users/Barlek

17条回答
  •  天命终不由人
    2020-12-15 07:03

    Along with h2 dependency in POM :
    
                com.h2database
                h2
                runtime
        
    

    I added jpa, crud repository dependency in POM Like given below and It worked fine for me:

    
                org.springframework.boot
                spring-boot-starter-data-jpa
            
    

提交回复
热议问题