Hendrik Jungnitsch
2022-09-27 1b60135f8fe5c0f9eb57bb9e050ed5b836934eb2
exercise
1 Dateien hinzugefügt
1 Dateien geändert
1 Dateien gelöscht
14 ■■■■■ Geänderte Dateien
pom.xml 4 ●●●● Patch | Ansicht | Raw | Blame | Historie
src/main/resources/application.properties 1 ●●●● Patch | Ansicht | Raw | Blame | Historie
src/main/resources/application.yaml 9 ●●●●● Patch | Ansicht | Raw | Blame | Historie
pom.xml
@@ -25,6 +25,10 @@
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
src/main/resources/application.properties
Datei wurde gelöscht
src/main/resources/application.yaml
Neue Datei
@@ -0,0 +1,9 @@
spring:
  datasource:
    url: jdbc:h2:mem:seminar
    username: seminar
    password: seminar
    driverClassName: org.h2.Driver
  jpa:
    hibernate:
      ddl-auto: update