설정 파일 경로 변경

main
이범준 1 year ago
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"/>

@ -9,13 +9,6 @@
<name>fims</name> <name>fims</name>
<url>http://www.xit.co.kr</url> <url>http://www.xit.co.kr</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<properties> <properties>
<encoding>UTF-8</encoding> <encoding>UTF-8</encoding>
<java-version>17</java-version> <java-version>17</java-version>
@ -891,6 +884,12 @@
<artifactId>jasypt-spring31</artifactId> <artifactId>jasypt-spring31</artifactId>
<version>1.9.3</version> <version>1.9.3</version>
</dependency> </dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.22</version>
<scope>compile</scope>
</dependency>
</dependencies> </dependencies>

@ -1,6 +1,6 @@
package kr.xit.fims.framework.biz.mng.code; package kr.xit.fims.framework.biz.mng.code;
import io.swagger.annotations.ApiParam;
import lombok.*; import lombok.*;
/** /**
@ -30,31 +30,31 @@ public class XitDetailCodeMngVO {
/* /*
* ID * ID
*/ */
@ApiParam(value = "코드 ID", required = true)
private String grpId; private String grpId;
/* /*
* ID * ID
*/ */
@ApiParam(value = "코드 ID 이름")
private String grpNm; private String grpNm;
/* /*
* *
*/ */
@ApiParam(value = "코드")
private String code; private String code;
/* /*
* *
*/ */
@ApiParam(value = "코드 이름")
private String codeVal; private String codeVal;
/* /*
* *
*/ */
@ApiParam(value = "코드 설명")
private String dscrp; private String dscrp;
private String etc1; private String etc1;

@ -16,7 +16,7 @@
multi-node시 shared=true property 필요 - 싱글노드시 불필요 multi-node시 shared=true property 필요 - 싱글노드시 불필요
--> -->
<bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"> <bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
<property name="configLocation" value="classpath:spring/service/cache/${spring.profiles.active}/ehcache.xml"/> <property name="configLocation" value="classpath:spring/${spring.profiles.active}/ehcache.xml"/>
<!--property name="shared" value="true"/--> <!--property name="shared" value="true"/-->
</bean> </bean>
</beans> </beans>

@ -25,11 +25,10 @@
allow-credentials="true" allow-credentials="true"
max-age="3600" /> max-age="3600" />
</mvc:cors> </mvc:cors>
<import resource="classpath:/spring/mvc/mvc-scan.xml" /> <import resource="classpath:/spring/mvc-scan.xml" />
<import resource="classpath:/spring/mvc/mvc-interceptor.xml" /> <import resource="classpath:/spring/mvc-interceptor.xml" />
<import resource="classpath:/spring/mvc/mvc-resolver.xml" /> <import resource="classpath:/spring/mvc-resolver.xml" />
<import resource="classpath:/spring/mvc/mvc-converter.xml" /> <import resource="classpath:/spring/mvc-converter.xml" />
<import resource="classpath:/spring/mvc/mvc-swagger2.xml" />
</beans> </beans>

@ -6,7 +6,6 @@
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd"> http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
<!-- component-scan 설정-->
<context:component-scan base-package="kr.xit"> <context:component-scan base-package="kr.xit">
<context:include-filter type="annotation" expression="org.springframework.stereotype.Service"/> <context:include-filter type="annotation" expression="org.springframework.stereotype.Service"/>
<context:include-filter type="annotation" expression="org.springframework.stereotype.Repository"/> <context:include-filter type="annotation" expression="org.springframework.stereotype.Repository"/>

@ -3,25 +3,25 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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.xsd"> xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<import resource="classpath:/spring/service/context-scan.xml"/> <import resource="classpath:/spring/context-scan.xml"/>
<import resource="classpath:/spring/service/context-common.xml"/> <import resource="classpath:/spring/context-common.xml"/>
<import resource="classpath:/spring/service/context-security.xml"/> <import resource="classpath:/spring/context-security.xml"/>
<import resource="classpath:/spring/service/context-transaction.xml"/> <import resource="classpath:/spring/context-transaction.xml"/>
<!-- <import resource="classpath:/spring/service/context-aspect.xml"/>--> <!-- <import resource="classpath:/spring/service/context-aspect.xml"/>-->
<!--bean class="kr.xit.fims.framework.core.config.EhCacheConfig3"/--> <!--bean class="kr.xit.fims.framework.core.config.EhCacheConfig3"/-->
<import resource="classpath:/spring/service/cache/context-ehcache.xml"/> <import resource="classpath:/spring/context-ehcache.xml"/>
<import resource="classpath:/spring/service/context-excel.xml"/> <import resource="classpath:/spring/context-excel.xml"/>
<import resource="classpath:/spring/service/context-beans.xml"/> <import resource="classpath:/spring/context-beans.xml"/>
<import resource="classpath:/spring/service/context-datasource.xml"/> <import resource="classpath:/spring/context-datasource.xml"/>
<import resource="classpath:/spring/service/context-idgen-xit.xml"/> <import resource="classpath:/spring/context-idgen-xit.xml"/>
<import resource="classpath:/spring/service/context-mail.xml"/> <import resource="classpath:/spring/context-mail.xml"/>
<import resource="classpath:/spring/service/context-mapper.xml"/> <import resource="classpath:/spring/context-mapper.xml"/>
<import resource="classpath:/spring/service/context-properties.xml"/> <import resource="classpath:/spring/context-properties.xml"/>
<import resource="classpath:/spring/service/context-syslogaop.xml"/> <import resource="classpath:/spring/context-syslogaop.xml"/>
<!-- <import resource="classpath:/spring/service/context-sqlMap.xml"/>--> <!-- <import resource="classpath:/spring/service/context-sqlMap.xml"/>-->
<import resource="classpath:/spring/service/context-scheduling-sym-log-lgm.xml"/> <import resource="classpath:/spring/context-scheduling-sym-log-lgm.xml"/>
<import resource="classpath:/spring/service/context-scheduling.xml"/> <import resource="classpath:/spring/context-scheduling.xml"/>
<import resource="classpath:/spring/service/context-validator.xml"/> <import resource="classpath:/spring/context-validator.xml"/>
<!-- <import resource="classpath:/spring/service/context-freemaker.xml"/>--> <!-- <import resource="classpath:/spring/service/context-freemaker.xml"/>-->
</beans> </beans>

@ -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>

@ -7,19 +7,6 @@
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<mvc:annotation-driven /> <mvc:annotation-driven />
<!--
MVC annotation 이용시 필요한 bean 자동 등록
<mvc:annotation-driven />
org.springframework.http.converter.ByteArrayHttpMessageConverter
org.springframework.http.converter.ResourceHttpMessageConverter
org.springframework.http.converter.StringHttpMessageConverter
org.springframework.http.converter.feed.AtomFeedHttpMessageConverter
org.springframework.http.converter.feed.RssChannelHttpMessageConverter
org.springframework.http.converter.json.MappingJacksonHttpMessageConverter (Jackson라이브러리 존재시)
org.springframework.http.converter.xml.SourceHttpMessageConverter
org.springframework.http.converter.xml.XmlAwareFormHttpMessageConverter
org.springframework.http.converter.xml.Jaxb2RootElementHttpMessageConverter (Jaxb2 라이브러리 존재시)
-->
<!-- <!--
<mvc:annotation-driven> <mvc:annotation-driven>

@ -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…
Cancel
Save