Administrator 2 years ago
parent
commit
c38ebad9dc

+ 5 - 1
pom.xml

@@ -58,6 +58,10 @@
 				</exclusion>
 			</exclusions>
 		</dependency>
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-data-redis</artifactId>
+		</dependency>
 		<!-- data-jdbc -->
 		<dependency>
 			<groupId>org.springframework.boot</groupId>
@@ -306,4 +310,4 @@
 <!--		</resources>-->
 	</build>
 
-</project>
+</project>

+ 2 - 0
src/main/java/com/sysu/admin/MarkApplication.java

@@ -7,6 +7,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
 import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
 import org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration;
 import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
+import org.springframework.cache.annotation.EnableCaching;
 import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
 
 import com.xiesx.fastboot.core.jpa.annotation.EnableJpaPlusRepositories;
@@ -21,6 +22,7 @@ import lombok.extern.slf4j.Slf4j;
  */
 @Slf4j
 @EnableJpaAuditing
+@EnableCaching
 @EnableJpaPlusRepositories
 @SpringBootApplication(exclude = {ValidationAutoConfiguration.class})
 public class MarkApplication extends SpringBootServletInitializer {

+ 0 - 10
src/main/java/com/sysu/admin/controller/aland/Land.java

@@ -164,16 +164,6 @@ crop_sure -- 作物可信度
     private Double ph;
 
     /**
-     *      * 4.49 - 5.00 0
-     *      * 5.00 - 6.50 1
-     *      * 6.50 - 7.50 2
-     *      * 7.50 - 8.50 3
-     *      * 8.50 - 8.70 4
-     */
-    @Column
-    private Integer phLevel;
-
-    /**
      *c  -- 碳
      */
     @Column()

+ 5 - 2
src/main/java/com/sysu/admin/controller/aland/LandService.java

@@ -5,6 +5,7 @@ import com.sysu.admin.controller.city.DistrictRepository;
 import com.sysu.admin.controller.city.DistrictService;
 import com.sysu.admin.controller.city.TownService;
 import com.sysu.admin.support.base.BaseService;
+import com.sysu.admin.support.cfg.CacheCfg;
 import com.sysu.admin.utils.MySimpleDateFormat;
 import com.sysu.admin.utils.TextUtil;
 import com.xiesx.fastboot.base.pagination.PaginationHelper;
@@ -14,6 +15,7 @@ import com.xiesx.fastboot.core.jpa.JpaPlusRepository;
 import org.apache.commons.lang3.ArrayUtils;
 import org.apache.commons.lang3.StringUtils;
 import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.cache.annotation.Cacheable;
 import org.springframework.stereotype.Service;
 
 import java.util.*;
@@ -192,6 +194,7 @@ public class LandService extends BaseService<Land,Long> {
      * @param type 统计类型 ph, toc, c, _2n, p, k
      * @return
      */
+    @Cacheable(key = "#districtCode+#city+#type", value = CacheCfg.LandService_getStatSoil)
     public List<TownStatSoil> getStatSoil(String districtCode, String city, String type){
         List<Object[]> res = null;
         Map<Integer,String> namesMap = null;
@@ -210,10 +213,10 @@ public class LandService extends BaseService<Land,Long> {
             throw new RuntimeException("district 和 city 至少需要一个");
         }
         String[] fields = StatItemData.typeMap.get(type);
-        String sql = "select " + groupField + ", "+fields[1]+", sum(area), count(id) from leizhou_land where town_id is not null "+appendWhere+" group by "+groupField+","+fields[1];
+        String sql = "select " + groupField + ", "+fields[1]+", sum(area) from leizhou_land where "+groupField+" is not null "+appendWhere+" group by "+groupField+","+fields[1];
 
         //最大值最小值平均值
-        String sql2 = "select min("+fields[0]+"),avg("+fields[0]+"), max("+fields[0]+") from leizhou_land where town_id is not null" + appendWhere;
+        String sql2 = "select min("+fields[0]+"),avg("+fields[0]+"), max("+fields[0]+") from leizhou_land where "+groupField+" is not null" + appendWhere;
 
         //城市数据的分组统计信息
         res = mEntityManager.createNativeQuery(sql).getResultList();

+ 30 - 16
src/main/java/com/sysu/admin/controller/aland/StatItemData.java

@@ -8,26 +8,40 @@ import java.util.Map;
  */
 public class StatItemData {
 
-    public static String[] phNames = {"4.49-5.00","5.00-6.50","6.50-7.50","7.50-8.50","8.50-8.70"};
-    public static String[] phColors = {"#FF0101","#FFC902","#A2FF71","#34C2FE","#4141FF"};
+    /**
+     * ph, toc, c, _2n, p, k
+     */
     public static Map<String, String[]> typeMap = new HashMap<String, String[]>(){{
         put("ph",new String[]{"ph","ph_level"});
+        put("toc",new String[]{"toc","toc_level"});
+        put("c",new String[]{"c","c_level"});
+        put("_2n",new String[]{"_2n","_2n_level"});
+        put("p",new String[]{"p","p_level"});
+        put("k",new String[]{"k","k_level"});
     }};
-    public static String[] tocNames = {};
-    public static String[] tocColors = {};
-    public static String[] cNames = {};
-    public static String[] cColors = {};
-    public static String[] _2nNames = {};
-    public static String[] _2nColors = {};
-    public static String[] pNames = {};
-    public static String[] pColors = {};
-    public static String[] kNames = {};
-    public static String[] kColors = {};
-
-
-    public static String[] get(String fieldStart, String colors){
+
+    public static String[] phNames = {"4.49-5.00","5.00-6.50","6.50-7.50","7.50-8.50","8.50-8.70"};
+    public static String[] phColors = {"#FF0101","#FFC902","#A2FF71","#34C2FE","#4141FF"};
+
+    public static String[] tocNames = {"0.0-0.5","0.5-1.2","1.2-1.4","1.4-1.8","1.8-2.5"};
+    public static String[] tocColors = {"#EFECAB","#C9BD88","#A69267","#856B49","#664830"};
+
+    public static String[] cNames = {"1.19-9.27","9.27-12.47","12.47-16.17","16.17-21.25","21.25-33.44"};
+    public static String[] cColors = {"#DBDBDB","#BOBOBO","#BOBOBO","#656565","#434343"};
+
+    public static String[] _2nNames = {"0.18-2.2","2.2-2.62","2.62-3.26","3.26-4.40","4.40-6.15"};
+    public static String[] _2nColors = {"#D3E4E7","#A6BFCF","#7C9FB7","#607E98","#306899"};
+
+    public static String[] pNames = {"0.01-0.44","0.44-0.62","0.62-0.87","0.87-1.22","1.22-2.20"};
+    public static String[] pColors = {"#DCF5E8","#A7CFB4","#77A883","#4B8758","#226536"};
+
+    public static String[] kNames = {"0.20-8.35","8.35-14.54","14.54-18.74","18.74-24.57","24.57-38.50"};
+    public static String[] kColors = {"#FFDFDF","#EAA69B","#CF705F","#B04131","#8E0B0A"};
+
+
+    public static String[] get(String fieldStart, String end){
         try {
-            return (String[])StatItemData.class.getField(fieldStart+colors).get(null);
+            return (String[])StatItemData.class.getField(fieldStart + end).get(null);
         } catch (IllegalAccessException e) {
             e.printStackTrace();
         } catch (NoSuchFieldException e) {

+ 65 - 0
src/main/java/com/sysu/admin/support/cache/DefaultJsonRedisSerializer.java

@@ -0,0 +1,65 @@
+package com.sysu.admin.support.cache;
+
+import com.alibaba.fastjson.JSON;
+import com.alibaba.fastjson.support.config.FastJsonConfig;
+import org.springframework.data.redis.serializer.RedisSerializer;
+import org.springframework.data.redis.serializer.SerializationException;
+
+/**
+ * @author shu hao
+ * @description:
+ * @date 2022/5/9 14:56
+ */
+public class DefaultJsonRedisSerializer implements RedisSerializer {
+    private FastJsonConfig fastJsonConfig = new FastJsonConfig();
+
+
+    public FastJsonConfig getFastJsonConfig() {
+        return fastJsonConfig;
+    }
+
+    public void setFastJsonConfig(FastJsonConfig fastJsonConfig) {
+        this.fastJsonConfig = fastJsonConfig;
+    }
+
+    @Override
+    public byte[] serialize(Object t) throws SerializationException {
+        if (t == null) {
+            return new byte[0];
+        }
+        try {
+            return JSON.toJSONBytesWithFastJsonConfig(
+                    fastJsonConfig.getCharset(),
+                    t,
+                    fastJsonConfig.getSerializeConfig(),
+                    fastJsonConfig.getSerializeFilters(),
+                    fastJsonConfig.getDateFormat(),
+                    JSON.DEFAULT_GENERATE_FEATURE,
+                    fastJsonConfig.getSerializerFeatures()
+            );
+        } catch (Exception ex) {
+            throw new SerializationException("Could not serialize: " + ex.getMessage(), ex);
+        }
+    }
+
+    @Override
+    public Object deserialize(byte[] bytes) throws SerializationException {
+        if (bytes == null || bytes.length == 0) {
+            return null;
+        }
+        try {
+            return JSON.parseObject(
+                    bytes,
+                    fastJsonConfig.getCharset(),
+                    Object.class,
+                    fastJsonConfig.getParserConfig(),
+                    fastJsonConfig.getParseProcess(),
+                    JSON.DEFAULT_PARSER_FEATURE,
+                    fastJsonConfig.getFeatures()
+            );
+        } catch (Exception ex) {
+            throw new SerializationException("Could not deserialize: " + ex.getMessage(), ex);
+        }
+    }
+
+}

+ 296 - 0
src/main/java/com/sysu/admin/support/cache/DefaultRedisCacheWriter.java

@@ -0,0 +1,296 @@
+/*
+ * Copyright 2017-2021 the original author or authors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.sysu.admin.support.cache;
+
+import com.sysu.admin.support.cfg.CacheCfg;
+import org.springframework.dao.PessimisticLockingFailureException;
+import org.springframework.data.redis.cache.RedisCacheWriter;
+import org.springframework.data.redis.connection.RedisConnection;
+import org.springframework.data.redis.connection.RedisConnectionFactory;
+import org.springframework.data.redis.connection.RedisStringCommands.SetOption;
+import org.springframework.data.redis.core.types.Expiration;
+import org.springframework.lang.Nullable;
+import org.springframework.util.Assert;
+
+import java.nio.charset.StandardCharsets;
+import java.time.Duration;
+import java.util.Collections;
+import java.util.Optional;
+import java.util.function.Consumer;
+import java.util.function.Function;
+
+/**
+ * {@link RedisCacheWriter} implementation capable of reading/writing binary data from/to Redis in {@literal standalone}
+ * and {@literal cluster} environments. Works upon a given {@link RedisConnectionFactory} to obtain the actual
+ * {@link RedisConnection}. <br />
+ * {@link DefaultRedisCacheWriter} can be used in
+ * {@link RedisCacheWriter#lockingRedisCacheWriter(RedisConnectionFactory) locking} or
+ * {@link RedisCacheWriter#nonLockingRedisCacheWriter(RedisConnectionFactory) non-locking} mode. While
+ * {@literal non-locking} aims for maximum performance it may result in overlapping, non atomic, command execution for
+ * operations spanning multiple Redis interactions like {@code putIfAbsent}. The {@literal locking} counterpart prevents
+ * command overlap by setting an explicit lock key and checking against presence of this key which leads to additional
+ * requests and potential command wait times.
+ *
+ * @author Christoph Strobl
+ * @author Mark Paluch
+ * @author André Prata
+ * @author Hao Shu
+ * @since 2.0
+ */
+public class DefaultRedisCacheWriter implements RedisCacheWriter {
+
+	private final RedisConnectionFactory connectionFactory;
+	private final Duration sleepTime;
+
+	/**
+	 * @param connectionFactory must not be {@literal null}.
+	 */
+	public DefaultRedisCacheWriter(RedisConnectionFactory connectionFactory) {
+		this(connectionFactory, Duration.ZERO);
+	}
+
+	/**
+	 * @param connectionFactory must not be {@literal null}.
+	 * @param sleepTime sleep time between lock request attempts. Must not be {@literal null}. Use {@link Duration#ZERO}
+	 *          to disable locking.
+	 */
+	DefaultRedisCacheWriter(RedisConnectionFactory connectionFactory, Duration sleepTime) {
+
+		Assert.notNull(connectionFactory, "ConnectionFactory must not be null!");
+		Assert.notNull(sleepTime, "SleepTime must not be null!");
+
+		this.connectionFactory = connectionFactory;
+		this.sleepTime = sleepTime;
+	}
+
+	/*
+	 * (non-Javadoc)
+	 * @see org.springframework.data.redis.cache.RedisCacheWriter#put(java.lang.String, byte[], byte[], java.time.Duration)
+	 */
+	@Override
+	public void put(String name, byte[] key, byte[] value, @Nullable Duration ttl) {
+
+		Assert.notNull(name, "Name must not be null!");
+		Assert.notNull(key, "Key must not be null!");
+		Assert.notNull(value, "Value must not be null!");
+		execute(name, connection -> {
+			Long expirationTime = CacheCfg.expires.get(name);
+			if (expirationTime != null) {
+				connection.set(key, value, Expiration.from(expirationTime, CacheCfg.timeUnit), SetOption.upsert());
+			} else {
+				connection.set(key, value);
+			}
+
+			return "OK";
+		});
+	}
+
+	/*
+	 * (non-Javadoc)
+	 * @see org.springframework.data.redis.cache.RedisCacheWriter#get(java.lang.String, byte[])
+	 */
+	@Override
+	public byte[] get(String name, byte[] key) {
+
+		Assert.notNull(name, "Name must not be null!");
+		Assert.notNull(key, "Key must not be null!");
+
+		return execute(name, redisConnection -> {
+			return redisConnection.get(key);
+		});
+	}
+
+	/*
+	 * (non-Javadoc)
+	 * @see org.springframework.data.redis.cache.RedisCacheWriter#putIfAbsent(java.lang.String, byte[], byte[], java.time.Duration)
+	 */
+	@Override
+	public byte[] putIfAbsent(String name, byte[] key, byte[] value, @Nullable Duration ttl) {
+
+		Assert.notNull(name, "Name must not be null!");
+		Assert.notNull(key, "Key must not be null!");
+		Assert.notNull(value, "Value must not be null!");
+
+		return execute(name, connection -> {
+
+			if (isLockingCacheWriter()) {
+				doLock(name, connection);
+			}
+
+			try {
+
+				boolean put;
+
+				if (shouldExpireWithin(ttl)) {
+					put = connection.set(key, value, Expiration.from(ttl), SetOption.ifAbsent());
+				} else {
+					put = connection.setNX(key, value);
+				}
+
+				if (put) {
+					return null;
+				}
+
+				return connection.get(key);
+			} finally {
+
+				if (isLockingCacheWriter()) {
+					doUnlock(name, connection);
+				}
+			}
+		});
+	}
+
+	/*
+	 * (non-Javadoc)
+	 * @see org.springframework.data.redis.cache.RedisCacheWriter#remove(java.lang.String, byte[])
+	 */
+	@Override
+	public void remove(String name, byte[] key) {
+
+		Assert.notNull(name, "Name must not be null!");
+		Assert.notNull(key, "Key must not be null!");
+
+		execute(name, connection -> connection.del(key));
+	}
+
+	/*
+	 * (non-Javadoc)
+	 * @see org.springframework.data.redis.cache.RedisCacheWriter#clean(java.lang.String, byte[])
+	 */
+	@Override
+	public void clean(String name, byte[] pattern) {
+
+		Assert.notNull(name, "Name must not be null!");
+		Assert.notNull(pattern, "Pattern must not be null!");
+
+		execute(name, connection -> {
+
+			boolean wasLocked = false;
+
+			try {
+
+				if (isLockingCacheWriter()) {
+					doLock(name, connection);
+					wasLocked = true;
+				}
+
+				byte[][] keys = Optional.ofNullable(connection.keys(pattern)).orElse(Collections.emptySet())
+						.toArray(new byte[0][]);
+
+				if (keys.length > 0) {
+					connection.del(keys);
+				}
+			} finally {
+
+				if (wasLocked && isLockingCacheWriter()) {
+					doUnlock(name, connection);
+				}
+			}
+
+			return "OK";
+		});
+	}
+
+	/**
+	 * Explicitly set a write lock on a cache.
+	 *
+	 * @param name the name of the cache to lock.
+	 */
+	void lock(String name) {
+		execute(name, connection -> doLock(name, connection));
+	}
+
+	/**
+	 * Explicitly remove a write lock from a cache.
+	 *
+	 * @param name the name of the cache to unlock.
+	 */
+	void unlock(String name) {
+		executeLockFree(connection -> doUnlock(name, connection));
+	}
+
+	private Boolean doLock(String name, RedisConnection connection) {
+		return connection.setNX(createCacheLockKey(name), new byte[0]);
+	}
+
+	private Long doUnlock(String name, RedisConnection connection) {
+		return connection.del(createCacheLockKey(name));
+	}
+
+	boolean doCheckLock(String name, RedisConnection connection) {
+		return connection.exists(createCacheLockKey(name));
+	}
+
+	/**
+	 * @return {@literal true} if {@link RedisCacheWriter} uses locks.
+	 */
+	private boolean isLockingCacheWriter() {
+		return !sleepTime.isZero() && !sleepTime.isNegative();
+	}
+
+	private <T> T execute(String name, Function<RedisConnection, T> callback) {
+
+		RedisConnection connection = connectionFactory.getConnection();
+		try {
+
+			checkAndPotentiallyWaitUntilUnlocked(name, connection);
+			return callback.apply(connection);
+		} finally {
+			connection.close();
+		}
+	}
+
+	private void executeLockFree(Consumer<RedisConnection> callback) {
+
+		RedisConnection connection = connectionFactory.getConnection();
+
+		try {
+			callback.accept(connection);
+		} finally {
+			connection.close();
+		}
+	}
+
+	private void checkAndPotentiallyWaitUntilUnlocked(String name, RedisConnection connection) {
+
+		if (!isLockingCacheWriter()) {
+			return;
+		}
+
+		try {
+
+			while (doCheckLock(name, connection)) {
+				Thread.sleep(sleepTime.toMillis());
+			}
+		} catch (InterruptedException ex) {
+
+			// Re-interrupt current thread, to allow other participants to react.
+			Thread.currentThread().interrupt();
+
+			throw new PessimisticLockingFailureException(String.format("Interrupted while waiting to unlock cache %s", name),
+					ex);
+		}
+	}
+
+	private static boolean shouldExpireWithin(@Nullable Duration ttl) {
+		return ttl != null && !ttl.isZero() && !ttl.isNegative();
+	}
+
+	private static byte[] createCacheLockKey(String name) {
+		return (name + "~lock").getBytes(StandardCharsets.UTF_8);
+	}
+}

+ 31 - 0
src/main/java/com/sysu/admin/support/cfg/CacheCfg.java

@@ -0,0 +1,31 @@
+package com.sysu.admin.support.cfg;
+
+import java.util.HashMap;
+import java.util.Map;
+import java.util.concurrent.TimeUnit;
+
+/**
+ * @author shu hao
+ * @description:
+ * @date 2022/5/9 9:15
+ */
+public class CacheCfg {
+
+    public static final String OrganService_findOne = "OrganService_findOne";
+    public static final String LandService_getStatSoil = "LandService_getStatSoil";
+
+
+    /**
+     * 过期时间 不配置默认永久 配置了就会过期
+     */
+    public static final Map<String,Long> expires = new HashMap(){{
+        put(OrganService_findOne, 3600L * 12);
+    }};
+
+
+
+    /**
+     * 过期时间的单位
+     */
+    public static final TimeUnit timeUnit = TimeUnit.SECONDS;
+}

+ 68 - 0
src/main/java/com/sysu/admin/support/cfg/RedisConfig.java

@@ -0,0 +1,68 @@
+package com.sysu.admin.support.cfg;
+
+import com.fasterxml.jackson.annotation.JsonAutoDetect;
+import com.fasterxml.jackson.annotation.PropertyAccessor;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.sysu.admin.support.cache.DefaultRedisCacheWriter;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.cache.annotation.CachingConfigurerSupport;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.data.redis.cache.RedisCacheConfiguration;
+import org.springframework.data.redis.cache.RedisCacheManager;
+import org.springframework.data.redis.cache.RedisCacheWriter;
+import org.springframework.data.redis.connection.RedisConnectionFactory;
+import org.springframework.data.redis.core.RedisTemplate;
+import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer;
+import org.springframework.data.redis.serializer.RedisSerializationContext;
+import org.springframework.data.redis.serializer.StringRedisSerializer;
+
+@Configuration
+public class RedisConfig extends CachingConfigurerSupport {
+
+    @Autowired
+    private RedisConnectionFactory redisConnectionFactory;
+
+
+    @Bean
+    public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory redisConnectionFactory) {
+        Jackson2JsonRedisSerializer<Object> serializer = new Jackson2JsonRedisSerializer<Object>(Object.class);
+        ObjectMapper objectMapper = new ObjectMapper();
+        objectMapper.setVisibility(PropertyAccessor.FIELD, JsonAutoDetect.Visibility.ANY);
+        objectMapper.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
+        serializer.setObjectMapper(objectMapper);
+
+        RedisTemplate<String, Object> redisTemplate = new RedisTemplate<>();
+        redisTemplate.setConnectionFactory(redisConnectionFactory);
+        redisTemplate.setKeySerializer(new StringRedisSerializer());
+        redisTemplate.setValueSerializer(serializer);
+        redisTemplate.setHashKeySerializer(new StringRedisSerializer());
+        redisTemplate.setHashValueSerializer(serializer);
+        redisTemplate.afterPropertiesSet();
+
+        return redisTemplate;
+    }
+
+    @Bean
+    public RedisCacheManager redisCacheManager(RedisTemplate redisTemplate) {
+        RedisCacheWriter redisCacheWriter = new DefaultRedisCacheWriter(redisTemplate.getConnectionFactory());
+        RedisCacheConfiguration redisCacheConfiguration = RedisCacheConfiguration.defaultCacheConfig()
+                .serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(redisTemplate.getValueSerializer()));
+        return new RedisCacheManager(redisCacheWriter, redisCacheConfiguration);
+    }
+
+    /**
+     * 二者选其一即可
+     */
+
+//    @Bean
+//    public RedisCacheConfiguration redisCacheConfiguration() {
+//        Jackson2JsonRedisSerializer<Object> serializer = new Jackson2JsonRedisSerializer<Object>(Object.class);
+//        ObjectMapper objectMapper = new ObjectMapper();
+//        objectMapper.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
+//        objectMapper.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
+//        serializer.setObjectMapper(objectMapper);
+//        return RedisCacheConfiguration.defaultCacheConfig().serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(serializer));
+//    }
+
+}

+ 1 - 1
src/main/resources/application-dev.yml

@@ -5,7 +5,7 @@ server:
 
 logging:
   config: classpath:log4j2-dev.xml
-  
+
 spring:
   jpa:
     show-sql: true

+ 7 - 0
src/main/resources/application.yml

@@ -5,6 +5,13 @@ jsp-servlet:
     development: true
 
 spring:
+  cache:
+    type: redis
+  redis:
+    password: zedu2020
+    timeout: 10000
+    port: 39544
+    host: server2.zhi-edu.com
   profiles:
     # 激活:本地 dev、后台 adm。服务api
     active: adm

+ 1 - 296
sysu_emap.iml

@@ -1,297 +1,2 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
-  <component name="FacetManager">
-    <facet type="jpa" name="JPA">
-      <configuration>
-        <setting name="validation-enabled" value="true" />
-        <setting name="provider-name" value="Hibernate" />
-        <datasource-mapping>
-          <factory-entry name="entityManagerFactory" />
-        </datasource-mapping>
-        <naming-strategy-map />
-      </configuration>
-    </facet>
-    <facet type="Spring" name="Spring">
-      <configuration />
-    </facet>
-    <facet type="web" name="Web">
-      <configuration>
-        <webroots>
-          <root url="file://$MODULE_DIR$/src/main/webapp" relative="/" />
-        </webroots>
-        <sourceRoots>
-          <root url="file://$MODULE_DIR$/src/main/java" />
-          <root url="file://$MODULE_DIR$/src/main/resources" />
-          <root url="file://$MODULE_DIR$/target/generated-sources/java" />
-        </sourceRoots>
-      </configuration>
-    </facet>
-  </component>
-  <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8">
-    <output url="file://$MODULE_DIR$/target/classes" />
-    <output-test url="file://$MODULE_DIR$/target/test-classes" />
-    <content url="file://$MODULE_DIR$">
-      <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
-      <sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
-      <sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
-      <sourceFolder url="file://$MODULE_DIR$/target/generated-sources/java" isTestSource="false" generated="true" />
-      <excludeFolder url="file://$MODULE_DIR$/target" />
-    </content>
-    <orderEntry type="inheritedJdk" />
-    <orderEntry type="sourceFolder" forTests="false" />
-    <orderEntry type="library" name="Maven: com.xiesx.fast:fast-boot:2.2.1" level="project" />
-    <orderEntry type="library" name="Maven: org.projectlombok:lombok:1.18.12" level="project" />
-    <orderEntry type="library" name="Maven: org.hibernate.validator:hibernate-validator:6.1.5.Final" level="project" />
-    <orderEntry type="library" name="Maven: jakarta.validation:jakarta.validation-api:2.0.2" level="project" />
-    <orderEntry type="library" name="Maven: com.fasterxml:classmate:1.5.1" level="project" />
-    <orderEntry type="library" name="Maven: com.google.guava:guava:29.0-jre" level="project" />
-    <orderEntry type="library" name="Maven: com.google.guava:failureaccess:1.0.1" level="project" />
-    <orderEntry type="library" name="Maven: com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava" level="project" />
-    <orderEntry type="library" name="Maven: com.google.code.findbugs:jsr305:3.0.2" level="project" />
-    <orderEntry type="library" name="Maven: org.checkerframework:checker-qual:2.11.1" level="project" />
-    <orderEntry type="library" name="Maven: com.google.errorprone:error_prone_annotations:2.3.4" level="project" />
-    <orderEntry type="library" name="Maven: com.google.j2objc:j2objc-annotations:1.3" level="project" />
-    <orderEntry type="library" name="Maven: io.jsonwebtoken:jjwt:0.9.1" level="project" />
-    <orderEntry type="library" name="Maven: com.alibaba:fastjson:1.2.73" level="project" />
-    <orderEntry type="library" name="Maven: commons-codec:commons-codec:1.14" level="project" />
-    <orderEntry type="library" name="Maven: commons-io:commons-io:2.7" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.commons:commons-lang3:3.10" level="project" />
-    <orderEntry type="library" name="Maven: joda-time:joda-time:2.10.6" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-web:2.3.4.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter:2.3.4.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: jakarta.annotation:jakarta.annotation-api:1.3.5" level="project" />
-    <orderEntry type="library" name="Maven: org.yaml:snakeyaml:1.26" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-json:2.3.4.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.11.2" level="project" />
-    <orderEntry type="library" name="Maven: com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.11.2" level="project" />
-    <orderEntry type="library" name="Maven: com.fasterxml.jackson.module:jackson-module-parameter-names:2.11.2" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework:spring-web:5.2.9.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework:spring-beans:5.2.9.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework:spring-webmvc:5.2.9.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework:spring-context:5.2.9.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework:spring-expression:5.2.9.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-data-jdbc:2.3.4.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-jdbc:2.3.4.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: com.zaxxer:HikariCP:3.4.5" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework:spring-jdbc:5.2.9.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework.data:spring-data-jdbc:2.0.4.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework.data:spring-data-relational:2.0.4.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework.data:spring-data-commons:2.3.4.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-data-jpa:2.3.4.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: jakarta.transaction:jakarta.transaction-api:1.3.3" level="project" />
-    <orderEntry type="library" name="Maven: jakarta.persistence:jakarta.persistence-api:2.2.3" level="project" />
-    <orderEntry type="library" name="Maven: org.hibernate:hibernate-core:5.4.21.Final" level="project" />
-    <orderEntry type="library" name="Maven: org.javassist:javassist:3.24.0-GA" level="project" />
-    <orderEntry type="library" name="Maven: net.bytebuddy:byte-buddy:1.10.14" level="project" />
-    <orderEntry type="library" name="Maven: antlr:antlr:2.7.7" level="project" />
-    <orderEntry type="library" name="Maven: org.jboss:jandex:2.1.3.Final" level="project" />
-    <orderEntry type="library" name="Maven: org.dom4j:dom4j:2.1.3" level="project" />
-    <orderEntry type="library" name="Maven: org.hibernate.common:hibernate-commons-annotations:5.1.0.Final" level="project" />
-    <orderEntry type="library" name="Maven: org.glassfish.jaxb:jaxb-runtime:2.3.3" level="project" />
-    <orderEntry type="library" name="Maven: jakarta.xml.bind:jakarta.xml.bind-api:2.3.3" level="project" />
-    <orderEntry type="library" name="Maven: org.glassfish.jaxb:txw2:2.3.3" level="project" />
-    <orderEntry type="library" name="Maven: com.sun.istack:istack-commons-runtime:3.0.11" level="project" />
-    <orderEntry type="library" scope="RUNTIME" name="Maven: com.sun.activation:jakarta.activation:1.2.2" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework.data:spring-data-jpa:2.3.4.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework:spring-orm:5.2.9.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework:spring-aspects:5.2.9.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-configuration-processor:2.3.4.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-test:1.5.9.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-test:2.3.4.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-test-autoconfigure:2.3.4.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: com.jayway.jsonpath:json-path:2.4.0" level="project" />
-    <orderEntry type="library" name="Maven: net.minidev:json-smart:2.3" level="project" />
-    <orderEntry type="library" name="Maven: net.minidev:accessors-smart:1.2" level="project" />
-    <orderEntry type="library" name="Maven: org.assertj:assertj-core:3.16.1" level="project" />
-    <orderEntry type="library" name="Maven: org.mockito:mockito-core:3.3.3" level="project" />
-    <orderEntry type="library" name="Maven: net.bytebuddy:byte-buddy-agent:1.10.14" level="project" />
-    <orderEntry type="library" name="Maven: org.objenesis:objenesis:2.6" level="project" />
-    <orderEntry type="library" name="Maven: org.hamcrest:hamcrest-core:2.2" level="project" />
-    <orderEntry type="library" name="Maven: org.hamcrest:hamcrest:2.2" level="project" />
-    <orderEntry type="library" name="Maven: org.hamcrest:hamcrest-library:2.2" level="project" />
-    <orderEntry type="library" name="Maven: org.skyscreamer:jsonassert:1.5.0" level="project" />
-    <orderEntry type="library" name="Maven: com.vaadin.external.google:android-json:0.0.20131108.vaadin1" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework:spring-core:5.2.9.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework:spring-jcl:5.2.9.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework:spring-test:5.2.9.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-quartz:2.3.4.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework:spring-context-support:5.2.9.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework:spring-tx:5.2.9.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.quartz-scheduler:quartz:2.3.2" level="project" />
-    <orderEntry type="library" name="Maven: com.mchange:mchange-commons-java:0.2.15" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-log4j2:2.3.4.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.logging.log4j:log4j-slf4j-impl:2.13.3" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.logging.log4j:log4j-api:2.13.3" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.logging.log4j:log4j-core:2.13.3" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.logging.log4j:log4j-jul:2.13.3" level="project" />
-    <orderEntry type="library" name="Maven: org.slf4j:jul-to-slf4j:1.7.30" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-starter-aop:2.3.4.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework:spring-aop:5.2.9.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.aspectj:aspectjweaver:1.9.6" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-jasper:9.0.38" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-core:9.0.38" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.tomcat:tomcat-annotations-api:9.0.38" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.tomcat.embed:tomcat-embed-el:9.0.38" level="project" />
-    <orderEntry type="library" name="Maven: org.eclipse.jdt:ecj:3.18.0" level="project" />
-    <orderEntry type="library" name="Maven: javax.servlet:jstl:1.2" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.shiro:shiro-spring:1.5.3" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.shiro:shiro-core:1.5.3" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.shiro:shiro-lang:1.5.3" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.shiro:shiro-cache:1.5.3" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.shiro:shiro-crypto-hash:1.5.3" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.shiro:shiro-crypto-core:1.5.3" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.shiro:shiro-crypto-cipher:1.5.3" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.shiro:shiro-config-core:1.5.3" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.shiro:shiro-config-ogdl:1.5.3" level="project" />
-    <orderEntry type="library" name="Maven: commons-beanutils:commons-beanutils:1.9.4" level="project" />
-    <orderEntry type="library" name="Maven: commons-collections:commons-collections:3.2.2" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.shiro:shiro-event:1.5.3" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.shiro:shiro-web:1.5.3" level="project" />
-    <orderEntry type="library" name="Maven: org.owasp.encoder:encoder:1.2.2" level="project" />
-    <orderEntry type="library" name="Maven: mysql:mysql-connector-java:5.1.8" level="project" />
-    <orderEntry type="library" name="Maven: com.querydsl:querydsl-jpa:4.3.1" level="project" />
-    <orderEntry type="library" name="Maven: com.querydsl:querydsl-core:4.3.1" level="project" />
-    <orderEntry type="library" name="Maven: com.mysema.commons:mysema-commons-lang:0.2.4" level="project" />
-    <orderEntry type="library" name="Maven: com.infradna.tool:bridge-method-annotation:1.13" level="project" />
-    <orderEntry type="library" name="Maven: javax.inject:javax.inject:1" level="project" />
-    <orderEntry type="library" name="Maven: org.slf4j:slf4j-api:1.7.30" level="project" />
-    <orderEntry type="library" name="Maven: com.querydsl:querydsl-apt:4.3.1" level="project" />
-    <orderEntry type="library" name="Maven: com.querydsl:querydsl-codegen:4.3.1" level="project" />
-    <orderEntry type="library" name="Maven: com.mysema.codegen:codegen:0.6.8" level="project" />
-    <orderEntry type="library" name="Maven: org.eclipse.jdt.core.compiler:ecj:4.3.1" level="project" />
-    <orderEntry type="library" name="Maven: org.reflections:reflections:0.9.9" level="project" />
-    <orderEntry type="library" name="Maven: com.google.code.findbugs:annotations:2.0.1" level="project" />
-    <orderEntry type="library" name="Maven: junit:junit:4.13" level="project" />
-    <orderEntry type="library" name="Maven: org.mylib:GeoLib:1.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools.jdbc:gt-jdbc-postgis:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools:gt-jdbc:26.0" level="project" />
-    <orderEntry type="library" name="Maven: commons-dbcp:commons-dbcp:1.4" level="project" />
-    <orderEntry type="library" name="Maven: javax.media:jai_core:1.1.3" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools:gt-shapefile:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools:gt-main:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools:gt-http:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.commons:commons-text:1.6" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools:gt-swing:26.0" level="project" />
-    <orderEntry type="library" name="Maven: com.miglayout:miglayout:swing:3.7" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools:gt-geojson:26.0" level="project" />
-    <orderEntry type="library" name="Maven: com.googlecode.json-simple:json-simple:1.1.1" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools:gt-render:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools:gt-coverage:26.0" level="project" />
-    <orderEntry type="library" name="Maven: javax.media:jai_imageio:1.1" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.imageio-ext:imageio-ext-tiff:1.3.10" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.imageio-ext:imageio-ext-utilities:1.3.10" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.imageio-ext:imageio-ext-geocore:1.3.10" level="project" />
-    <orderEntry type="library" name="Maven: javax.xml.bind:jaxb-api:2.3.1" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.imageio-ext:imageio-ext-streams:1.3.10" level="project" />
-    <orderEntry type="library" name="Maven: javax.activation:javax.activation-api:1.2.0" level="project" />
-    <orderEntry type="library" name="Maven: io.airlift:aircompressor:0.20" level="project" />
-    <orderEntry type="library" name="Maven: javax.media:jai_codec:1.1.3" level="project" />
-    <orderEntry type="library" name="Maven: org.jaitools:jt-zonalstats:1.6.0" level="project" />
-    <orderEntry type="library" name="Maven: org.jaitools:jt-utils:1.6.0" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.affine:jt-affine:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.algebra:jt-algebra:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.bandmerge:jt-bandmerge:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.bandselect:jt-bandselect:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.bandcombine:jt-bandcombine:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.border:jt-border:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.buffer:jt-buffer:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.crop:jt-crop:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.iterators:jt-iterators:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.lookup:jt-lookup:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.mosaic:jt-mosaic:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.nullop:jt-nullop:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.rescale:jt-rescale:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.scale:jt-scale:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.scale2:jt-scale2:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: org.huldra.math:bigint:0.7.1" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.stats:jt-stats:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.translate:jt-translate:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.utilities:jt-utilities:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.warp:jt-warp:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.zonal:jt-zonal:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.binarize:jt-binarize:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.format:jt-format:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.colorconvert:jt-colorconvert:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.errordiffusion:jt-errordiffusion:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.orderdither:jt-orderdither:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.colorindexer:jt-colorindexer:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.imagefunction:jt-imagefunction:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.piecewise:jt-piecewise:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.classifier:jt-classifier:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.rlookup:jt-rlookup:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.vectorbin:jt-vectorbin:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jaiext.shadedrelief:jt-shadedrelief:1.1.20" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools:gt-cql:26.0" level="project" />
-    <orderEntry type="library" name="Maven: com.conversantmedia:disruptor:1.2.13" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools.ogc:net.opengis.wfs:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools.ogc:org.w3.xlink:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools.ogc:net.opengis.fes:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools.ogc:net.opengis.ows:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools:gt-opengis:26.0" level="project" />
-    <orderEntry type="library" name="Maven: systems.uom:systems-common:2.0.2" level="project" />
-    <orderEntry type="library" name="Maven: javax.measure:unit-api:2.0" level="project" />
-    <orderEntry type="library" name="Maven: tech.units:indriya:2.0.2" level="project" />
-    <orderEntry type="library" name="Maven: tech.uom.lib:uom-lib-common:2.0" level="project" />
-    <orderEntry type="library" name="Maven: si.uom:si-quantity:2.0.1" level="project" />
-    <orderEntry type="library" name="Maven: si.uom:si-units:2.0.1" level="project" />
-    <orderEntry type="library" name="Maven: org.eclipse.emf:org.eclipse.emf.common:2.15.0" level="project" />
-    <orderEntry type="library" name="Maven: org.eclipse.emf:org.eclipse.emf.ecore:2.15.0" level="project" />
-    <orderEntry type="library" name="Maven: org.eclipse.emf:org.eclipse.emf.ecore.xmi:2.15.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools:gt-wfs-ng:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools:gt-complex:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools:gt-app-schema-resolver:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools.xsd:gt-xsd-gml3:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools.xsd:gt-xsd-core:26.0" level="project" />
-    <orderEntry type="library" name="Maven: picocontainer:picocontainer:1.2" level="project" />
-    <orderEntry type="library" name="Maven: commons-jxpath:commons-jxpath:1.3" level="project" />
-    <orderEntry type="library" name="Maven: org.eclipse.xsd:org.eclipse.xsd:2.12.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools.xsd:gt-xsd-gml2:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools:gt-xml:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.xml:xml-commons-resolver:1.2" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools:gt-gml-geometry-streaming:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools:gt-http-commons:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.httpcomponents:httpclient:4.5.12" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.httpcomponents:httpcore:4.4.13" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools.xsd:gt-xsd-wfs:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools.xsd:gt-xsd-filter:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools.xsd:gt-xsd-fes:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools.xsd:gt-xsd-ows:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools:gt-epsg-hsql:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.hsqldb:hsqldb:2.5.1" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools:gt-referencing:26.0" level="project" />
-    <orderEntry type="library" name="Maven: org.ejml:ejml-ddense:0.34" level="project" />
-    <orderEntry type="library" name="Maven: org.ejml:ejml-core:0.34" level="project" />
-    <orderEntry type="library" name="Maven: commons-pool:commons-pool:1.6" level="project" />
-    <orderEntry type="library" name="Maven: org.geotools:gt-metadata:26.0" level="project" />
-    <orderEntry type="library" name="Maven: it.geosolutions.jgridshift:jgridshift-core:1.3" level="project" />
-    <orderEntry type="library" name="Maven: net.sf.geographiclib:GeographicLib-Java:1.49" level="project" />
-    <orderEntry type="library" name="Maven: org.hibernate:hibernate-spatial:5.6.10.Final" level="project" />
-    <orderEntry type="library" name="Maven: org.jboss.logging:jboss-logging:3.4.1.Final" level="project" />
-    <orderEntry type="library" name="Maven: org.geolatte:geolatte-geom:1.8.2" level="project" />
-    <orderEntry type="library" name="Maven: org.locationtech.jts:jts-core:1.18.2" level="project" />
-    <orderEntry type="library" name="Maven: org.postgresql:postgresql:42.2.16" level="project" />
-    <orderEntry type="library" name="Maven: net.postgis:postgis-jdbc:2.5.1" level="project" />
-    <orderEntry type="library" name="Maven: net.postgis:postgis-geometry:2.5.1" level="project" />
-    <orderEntry type="library" name="Maven: com.github.zhangquanli:aliyun-sms-spring-boot-starter:1.0.2" level="project" />
-    <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-databind:2.11.2" level="project" />
-    <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-annotations:2.11.2" level="project" />
-    <orderEntry type="library" name="Maven: com.fasterxml.jackson.core:jackson-core:2.11.2" level="project" />
-    <orderEntry type="library" name="Maven: com.alibaba:easyexcel:2.2.6" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.poi:poi:3.17" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.commons:commons-collections4:4.1" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.poi:poi-ooxml:3.17" level="project" />
-    <orderEntry type="library" name="Maven: com.github.virtuald:curvesapi:1.04" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.poi:poi-ooxml-schemas:3.17" level="project" />
-    <orderEntry type="library" name="Maven: org.apache.xmlbeans:xmlbeans:2.6.0" level="project" />
-    <orderEntry type="library" name="Maven: stax:stax-api:1.0.1" level="project" />
-    <orderEntry type="library" name="Maven: cglib:cglib:3.1" level="project" />
-    <orderEntry type="library" name="Maven: org.ow2.asm:asm:4.2" level="project" />
-    <orderEntry type="library" name="Maven: org.ehcache:ehcache:3.8.1" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-devtools:2.3.4.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot:2.3.4.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: org.springframework.boot:spring-boot-autoconfigure:2.3.4.RELEASE" level="project" />
-    <orderEntry type="library" name="Maven: com.squareup.okhttp3:okhttp:3.10.0" level="project" />
-    <orderEntry type="library" name="Maven: com.squareup.okio:okio:1.14.0" level="project" />
-    <orderEntry type="library" name="Maven: com.belerweb:pinyin4j:2.5.0" level="project" />
-  </component>
-</module>
+<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4" />