Answers for "Database "C:/Users/azhya/test" not found, either pre-create it or allow remote database creation (not recommended in secure environments) [90149-200] 90149/90149"

6

spring h2 database dependency

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-jpa</artifactId>
    <version>2.1.4.RELEASE</version>
</dependency>
<dependency>
    <groupId>com.h2database</groupId>
    <artifactId>h2</artifactId>
    <scope>runtime</scope>
    <version>1.4.199</version>
</dependency>
Posted by: Guest on April-07-2020

Code answers related to "Database "C:/Users/azhya/test" not found, either pre-create it or allow remote database creation (not recommended in secure environments) [90149-200] 90149/90149"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language