fix(sql):修复业务字典的命名
This commit is contained in:
File diff suppressed because one or more lines are too long
7
pom.xml
7
pom.xml
@@ -32,9 +32,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|
||||||
<resources>
|
<resources>
|
||||||
@@ -639,9 +636,9 @@
|
|||||||
<sql driver="${jdbc.deploy.driver}" url="${jdbc.deploy.url}" userid="${jdbc.deploy.username}" password="${jdbc.deploy.password}"
|
<sql driver="${jdbc.deploy.driver}" url="${jdbc.deploy.url}" userid="${jdbc.deploy.username}" password="${jdbc.deploy.password}"
|
||||||
onerror="continue" encoding="${maven.compiler.encoding}">
|
onerror="continue" encoding="${maven.compiler.encoding}">
|
||||||
<classpath refid="maven.test.classpath" />
|
<classpath refid="maven.test.classpath" />
|
||||||
<!--<transaction src="db/init/galaxy_stru_${jdbc.type}.sql"/>
|
<transaction src="db/init/galaxy_stru_${jdbc.type}.sql"/>
|
||||||
<transaction src="db/init/galaxy_stru_ui_${jdbc.type}.sql"/>
|
<transaction src="db/init/galaxy_stru_ui_${jdbc.type}.sql"/>
|
||||||
<transaction src="db/init/galaxy_data_${jdbc.type}.sql"/>-->
|
<transaction src="db/init/galaxy_data_${jdbc.type}.sql"/>
|
||||||
<transaction src="db/test/galaxy_test_${jdbc.type}.sql"/>
|
<transaction src="db/test/galaxy_test_${jdbc.type}.sql"/>
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
|
|||||||
@@ -1,24 +1,18 @@
|
|||||||
package com.nis.listener;
|
package com.nis.listener;
|
||||||
|
|
||||||
import java.util.HashSet;
|
|
||||||
import java.util.Iterator;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Set;
|
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
|
||||||
|
|
||||||
import javax.servlet.ServletContextEvent;
|
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
import org.springframework.data.redis.core.RedisTemplate;
|
|
||||||
import org.springframework.web.context.ContextLoaderListener;
|
|
||||||
|
|
||||||
import com.nis.domain.restful.CompileAndGroupRelations;
|
import com.nis.domain.restful.CompileAndGroupRelations;
|
||||||
import com.nis.domain.restful.GroupAndRegionRelations;
|
import com.nis.domain.restful.GroupAndRegionRelations;
|
||||||
import com.nis.domain.restful.MaatRelation;
|
import com.nis.domain.restful.MaatRelation;
|
||||||
import com.nis.util.Configurations;
|
import com.nis.util.Configurations;
|
||||||
import com.nis.web.service.SpringContextHolder;
|
import com.nis.web.service.SpringContextHolder;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import org.springframework.data.redis.core.RedisTemplate;
|
||||||
|
import org.springframework.web.context.ContextLoaderListener;
|
||||||
|
|
||||||
|
import javax.servlet.ServletContextEvent;
|
||||||
|
import java.util.*;
|
||||||
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 项目启动时加载数据字典
|
* 项目启动时加载数据字典
|
||||||
@@ -46,6 +40,8 @@ public class CompileGroupRegionRela extends ContextLoaderListener {
|
|||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void getAllId(RedisTemplate<String, String> redisTemplate, int redisDBIndex) {
|
private void getAllId(RedisTemplate<String, String> redisTemplate, int redisDBIndex) {
|
||||||
|
|||||||
@@ -1,16 +1,19 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.zeroturnaround.com" xsi:schemaLocation="http://www.zeroturnaround.com http://www.zeroturnaround.com/alderaan/rebel-2_0.xsd">
|
|
||||||
|
<!--
|
||||||
|
This is the JRebel configuration file. It maps the running application to your IDE workspace, enabling JRebel reloading for this project.
|
||||||
|
Refer to https://manuals.zeroturnaround.com/jrebel/standalone/config.html for more information.
|
||||||
|
-->
|
||||||
|
<application generated-by="intellij" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.zeroturnaround.com" xsi:schemaLocation="http://www.zeroturnaround.com http://update.zeroturnaround.com/jrebel/rebel-2_1.xsd">
|
||||||
|
|
||||||
<classpath>
|
<classpath>
|
||||||
<dir name="D:/workspace/springmvc4_frame/target/classes">
|
<dir name="D:/galaxy-service/target/classes">
|
||||||
</dir>
|
|
||||||
<dir name="D:/workspace/springmvc4_frame/target/test-classes">
|
|
||||||
</dir>
|
</dir>
|
||||||
</classpath>
|
</classpath>
|
||||||
|
|
||||||
<web>
|
<web>
|
||||||
<link target="/">
|
<link target="/">
|
||||||
<dir name="D:/workspace/springmvc4_frame/src/main/webapp">
|
<dir name="D:/galaxy-service/src/main/webapp">
|
||||||
</dir>
|
</dir>
|
||||||
</link>
|
</link>
|
||||||
</web>
|
</web>
|
||||||
|
|||||||
Reference in New Issue
Block a user