Merge branch 'develop' into frontend/timo

This commit is contained in:
Timo Volkmann 2019-03-27 10:15:53 +01:00
commit e6dd3b33b9
2 changed files with 11 additions and 1 deletions

View File

@ -15,6 +15,7 @@ public class Station {
private double longitude;
private double lattitude;
private int code;
private String solution;
public Station() {
}
@ -58,4 +59,12 @@ public class Station {
public void setCode(int code) {
this.code = code;
}
public String getSolution() {
return solution;
}
public void setSolution(String solution) {
this.solution = solution;
}
}

View File

@ -2,4 +2,5 @@ spring.datasource.url=jdbc:mariadb://seserver.se.hs-heilbronn.de:3406/buga19Geoc
spring.datasource.username=BuGa19GeocachingUser
spring.datasource.password=GeocachingPw
spring.datasource.driver-class-name=org.mariadb.jdbc.Driver
spring.jpa.hibernate.ddl-auto=update
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true