|
|
@@ -24,10 +24,9 @@ public class FusionApplication implements CommandLineRunner {
|
|
|
private String queryPath;
|
|
|
@Value("${spring.profiles.active}")
|
|
|
private String environment;
|
|
|
- @Value("${4dkk.laserService.basePath}")
|
|
|
private String laserWebsite;
|
|
|
- @Value("${4dkk.fdService.basePath}")
|
|
|
- private String meshWebsite;
|
|
|
+ @Value("${fusion.website}")
|
|
|
+ private String website;
|
|
|
@Value("${upload.query-path-ss}")
|
|
|
private String ssQueryPath;
|
|
|
public static void main(String[] args) {
|
|
|
@@ -39,9 +38,8 @@ public class FusionApplication implements CommandLineRunner {
|
|
|
CacheUtil.uploadType = uploadType;
|
|
|
CacheUtil.queryPath = queryPath;
|
|
|
CacheUtil.environment = environment;
|
|
|
- CacheUtil.laserWebsite = laserWebsite;
|
|
|
- CacheUtil.meshWebsite = meshWebsite;
|
|
|
CacheUtil.ssQueryPath = ssQueryPath;
|
|
|
+ CacheUtil.website = website;
|
|
|
|
|
|
}
|
|
|
}
|