Removed dirties context on any tests

This commit is contained in:
Marcin Grzejszczak
2018-08-08 18:00:58 +02:00
73 changed files with 343 additions and 113 deletions

View File

@@ -0,0 +1,17 @@
package com.example.loan;
import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties("service")
public class ServiceProperties {
private int port = 8080;
public void setPort(int port) {
this.port = port;
}
public int getPort() {
return this.port;
}
}