Hier ist meine pom.xml-Datei:
Code: Select all
org.springframework.boot
spring-boot-starter-parent
2.3.3.RELEASE
gtech
agriculturerent
0.0.1-SNAPSHOT
1.8
1.8
1.8
UTF-8
org.springframework.boot
spring-boot-starter-data-jpa
org.springframework.boot
spring-boot-starter-test
test
org.junit.vintage
junit-vintage-engine
com.h2database
h2
runtime
org.hibernate
hibernate-core
5.4.20.Final
org.springframework.boot
spring-boot-maven-plugin
Code: Select all
spring.datasource.url=jdbc:h2:file:./TestDb
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=""
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
spring.h2.console.enabled=true
Code: Select all
@SpringBootApplication
public class AgriculturerentApplication {
public static void main(String[] args) {
SpringApplication.run(AgriculturerentApplication.class, args);
}
}
Vielen Dank im Voraus.
Mobile version