Browse Source

cql增加时间处理逻辑

liwh 1 year ago
parent
commit
fa43d7d161

+ 1 - 1
cql-service/src/main/java/cn/com/taiji/cql/service/impl/ECqlServiceImpl.java

@@ -553,7 +553,7 @@ public class ECqlServiceImpl implements IECqlService{
 
                     String[] names = attributeMap.keySet().toArray(new String[0]);
 
-                    String[] attributeValues = attributeMap.values().toArray(new String[0]);
+                    Object[] attributeValues = attributeMap.values().toArray(new Object[0]);
 
                     Filter filter = ECQL.toFilter(cql);
 

+ 12 - 0
tile-web/src/main/java/cn/com/taiji/web/service/impl/GeoDataSourceServiceImpl.java

@@ -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")){