|
@@ -6,6 +6,9 @@ import cn.com.taiji.cql.model.GeoDataSource;
|
|
|
import cn.com.taiji.cql.service.IECqlService;
|
|
|
import cn.com.taiji.web.config.GeoConfig;
|
|
|
import cn.com.taiji.web.service.IGeoDataSourceService;
|
|
|
+import cn.hutool.core.date.DatePattern;
|
|
|
+import cn.hutool.core.date.DateTime;
|
|
|
+import cn.hutool.core.date.DateUtil;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.geotools.data.jdbc.datasource.DBCPDataSourceFactory;
|
|
@@ -15,6 +18,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
import javax.sql.DataSource;
|
|
|
+import java.util.Date;
|
|
|
import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
@@ -114,6 +118,10 @@ public class GeoDataSourceServiceImpl implements IGeoDataSourceService {
|
|
|
dsParams.put(JDBCDataStoreFactory.PASSWD.key, geoConfig.getDsPassword());
|
|
|
dsParams.put("tableName", "tile_data_source");
|
|
|
|
|
|
+ DateTime beginTime = DateUtil.parse(DateUtil.formatDateTime(new Date()), DatePattern.NORM_DATETIME_PATTERN);
|
|
|
+
|
|
|
+ paramMaps.put("create_time",beginTime);
|
|
|
+
|
|
|
return ecqlService.cqlAdd(dsParams,paramMaps);
|
|
|
}
|
|
|
|
|
@@ -131,6 +139,10 @@ public class GeoDataSourceServiceImpl implements IGeoDataSourceService {
|
|
|
dsParams.put(JDBCDataStoreFactory.PASSWD.key, geoConfig.getDsPassword());
|
|
|
dsParams.put("tableName", "tile_data_source");
|
|
|
|
|
|
+ DateTime updateTime = DateUtil.parse(DateUtil.formatDateTime(new Date()), DatePattern.NORM_DATETIME_PATTERN);
|
|
|
+
|
|
|
+ paramMaps.put("update_time",updateTime);
|
|
|
+
|
|
|
String cql = paramMaps.get("cql").toString();
|
|
|
|
|
|
if(paramMaps.containsKey("cql")){
|