설정 파일 경로 변경
parent
08d949d4a2
commit
d444c8b820
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +0,0 @@
|
||||
<TreeState CompareLevel="FE Schema Report" DBMS="198" DBMSVersion="5" TemplateFileLocation="MySQL.fet"><Node TypeId="0"/><Node TypeId="1"/><Node TypeId="2"/><Node TypeId="3"/><Node TypeId="5"/><Node TypeId="6"/><Node TypeId="8"/><Node TypeId="21"/><Node TypeId="23"/><Node TypeId="28"/><Node TypeId="29"/><Node TypeId="30"/><Node TypeId="35"/><Node TypeId="37"/><Node TypeId="40"/><Node TypeId="41"/><Node TypeId="42"/><Node TypeId="44"/><Node TypeId="46"/><Node TypeId="47"/><Node TypeId="48"/><Node TypeId="49"/><Node TypeId="50"/><Node TypeId="52"/><Node TypeId="53"/><Node TypeId="58"/><Node TypeId="60"/><Node TypeId="61"/><Node TypeId="68"/><Node TypeId="69"/><Node TypeId="70"/><Node TypeId="71"/><Node TypeId="72"/><Node TypeId="73"/><Node TypeId="79"/><Node TypeId="81"/><Node TypeId="82"/><Node TypeId="83"/><Node TypeId="84"/><Node TypeId="85"/><Node TypeId="86"/><Node TypeId="87"/><Node TypeId="88"/><Node TypeId="90"/><Node TypeId="94"/><Node TypeId="95"/><Node TypeId="96"/><Node TypeId="99"/><Node TypeId="103"/><Node TypeId="126"/><Node TypeId="157"/><Node TypeId="160"/><Node TypeId="168"/><Node TypeId="170"/><Node TypeId="173"/><Node TypeId="185"/><Node TypeId="186"/><Node TypeId="187"/><Node TypeId="201"/><Node TypeId="204"/><Node TypeId="271"/><Node TypeId="293"/><Node TypeId="295"/><Node TypeId="297"/></TreeState>
|
Binary file not shown.
@ -1,32 +0,0 @@
|
||||
CREATE TABLE `tb_key_sequence` (
|
||||
`seq_name` varchar(3) NOT NULL COMMENT '시퀀스 prefix',
|
||||
`seq_no` int NOT NULL COMMENT '시퀀스 no',
|
||||
PRIMARY KEY (`seq_name`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='tb_key_sequence';
|
||||
|
||||
|
||||
|
||||
CREATE FUNCTION `fn_get_key_seq`(`p_seq_name` VARCHAR(3), `p_key_length` int)
|
||||
RETURNS varchar(20) CHARSET utf8
|
||||
BEGIN
|
||||
DECLARE RTN_VAL VARCHAR(20);
|
||||
|
||||
INSERT INTO tb_key_sequence (seq_name, seq_no)
|
||||
values (p_seq_name, LAST_INSERT_ID(1))
|
||||
ON DUPLICATE KEY UPDATE seq_no=LAST_INSERT_ID(seq_no+1);
|
||||
|
||||
set @ret = row_count();
|
||||
|
||||
if @ret = 0 then
|
||||
set RTN_VAL = '0';
|
||||
else
|
||||
SET RTN_VAL = (SELECT TRIM(CONCAT(p_seq_name, LPAD(LAST_INSERT_ID(),p_key_length,'0'))));
|
||||
end if;
|
||||
|
||||
RETURN RTN_VAL;
|
||||
END ;
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -1,3 +0,0 @@
|
||||
CREATE UNIQUE INDEX uix_tb_cmm_file_mastr_01
|
||||
ON tb_cmm_file_mastr (inf_type, inf_key);
|
||||
|
@ -1 +0,0 @@
|
||||
<TreeState CompareLevel="Database" DBMS="198"/>
|
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
|
||||
|
||||
|
||||
|
||||
</beans>
|
@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:mvc="http://www.springframework.org/schema/mvc"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd
|
||||
http://www.springframework.org/schema/mvc https://www.springframework.org/schema/mvc/spring-mvc.xsd">
|
||||
|
||||
<mvc:resources location="classpath:/META-INF/resources/" mapping="swagger-ui.html"/>
|
||||
<mvc:resources location="classpath:/META-INF/resources/webjars/" mapping="/webjars/**"/>
|
||||
<mvc:resources location="/resources/" mapping="/resources/**"/>
|
||||
|
||||
</beans>
|
@ -1,30 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
|
||||
|
||||
<!-- lob Handler -->
|
||||
<!-- <bean id="lobHandler" class="org.springframework.jdbc.support.lob.DefaultLobHandler" lazy-init="true" /> -->
|
||||
|
||||
<!-- SqlMap setup for iBATIS Database Layer -->
|
||||
<!-- <bean id="sqlMapClient" class="org.egovframe.rte.psl.orm.ibatis.SqlMapClientFactoryBean"> -->
|
||||
<!-- <property name="configLocations"> -->
|
||||
<!-- <list> -->
|
||||
<!-- <value>classpath:/framework/sqlmap/*/config/${Globals.DbType}/*.xml</value> -->
|
||||
<!-- </list> -->
|
||||
<!-- </property> -->
|
||||
<!-- <property name="dataSource" ref="dataSource-${Globals.DbType}"/> -->
|
||||
<!-- <property name="lobHandler" ref="lobHandler"/> -->
|
||||
<!-- </bean> -->
|
||||
|
||||
<!-- SqlMap setup for iBATIS Database Layer -->
|
||||
<!-- <bean id="egov.sqlMapClient" class="org.egovframe.rte.psl.orm.ibatis.SqlMapClientFactoryBean"> -->
|
||||
<!-- <property name="configLocations"> -->
|
||||
<!-- <list> -->
|
||||
<!-- <value>classpath:/framework/sqlmap/*/config/${Globals.DbType}/*.xml</value> -->
|
||||
<!-- </list> -->
|
||||
<!-- </property> -->
|
||||
<!-- <property name="dataSource" ref="dataSource-${Globals.DbType}"/> -->
|
||||
<!-- <property name="lobHandler" ref="lobHandler"/> -->
|
||||
<!-- </bean> -->
|
||||
|
||||
</beans>
|
Loading…
Reference in New Issue