CAA160 exercise 3 final state
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package com.sap.teched.cap.bookstore;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class Application {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(Application.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
7
bookstore/srv/src/main/resources/application.yaml
Normal file
7
bookstore/srv/src/main/resources/application.yaml
Normal file
@@ -0,0 +1,7 @@
|
||||
---
|
||||
spring:
|
||||
profiles: default
|
||||
datasource:
|
||||
url: "jdbc:sqlite:sqlite.db"
|
||||
driver-class-name: org.sqlite.JDBC
|
||||
initialization-mode: never
|
||||
Reference in New Issue
Block a user