|
@@ -67,8 +67,11 @@ public class CommonServiceImpl implements CommonService {
|
|
|
@Autowired
|
|
|
private WebMediatorImpl webMediator;
|
|
|
|
|
|
- @Value("${feature.import.task}")
|
|
|
- private String featureImportTask;
|
|
|
+ @Value("${feature.task.import}")
|
|
|
+ private String featureTaskImport;
|
|
|
+
|
|
|
+ @Value("${feature.task.recommend}")
|
|
|
+ private String featureTaskRecommend;
|
|
|
|
|
|
@Override
|
|
|
public List<UserVO> getMoreUser(Pageable pageable,String keyword) {
|
|
@@ -325,7 +328,9 @@ public class CommonServiceImpl implements CommonService {
|
|
|
@Override
|
|
|
public ConfigurationVO getConfigurationListMap() {
|
|
|
Map<String, String> configurationMap = commonRepo.getConfigurationListMap();
|
|
|
- configurationMap.put("feature_import_task", "{\"feature_import_task\":" + featureImportTask + "}");
|
|
|
+ System.out.println(featureTaskImport);
|
|
|
+ configurationMap.put("feature_task_import", "{\"feature_task_import\":" + featureTaskImport + "}");
|
|
|
+ configurationMap.put("feature_task_recommend", "{\"feature_task_recommend\":" + featureTaskRecommend + "}");
|
|
|
return new ConfigurationVO(configurationMap);
|
|
|
}
|
|
|
|