|
|
|
@@ -27,6 +27,9 @@ public class BApplication { |
|
|
|
@Value("${fm.open}") |
|
|
|
private boolean fmOpen; |
|
|
|
|
|
|
|
@Value("${fm.pos_url}") |
|
|
|
private String fmPosUrl; |
|
|
|
|
|
|
|
@Bean |
|
|
|
public boolean isFmException() { |
|
|
|
return fmException; |
|
|
|
@@ -42,6 +45,11 @@ public class BApplication { |
|
|
|
return fmOpen; |
|
|
|
} |
|
|
|
|
|
|
|
@Bean |
|
|
|
public String fmPosUrl() { |
|
|
|
return fmPosUrl; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) { |
|
|
|
SpringApplication.run(BApplication.class, args); |
|
|
|
|