빌드 오류 임시 대응

This commit is contained in:
Rinjae
2025-11-19 21:40:54 +09:00
parent f116c9647b
commit 8417bc52d4
6 changed files with 31 additions and 2277 deletions
+14 -8
View File
@@ -2,11 +2,14 @@
<provider>org.hibernate.jpa.HibernatePersistenceProvider</provider> <provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
<jta-data-source>jdbc/dsOBP_EMS</jta-data-source> <jta-data-source>jdbc/dsOBP_EMS</jta-data-source>
<properties> <properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.Oracle12cDialect" /> <property name="hibernate.dialect"
<property name="javax.persistence.validation.mode" value="NONE" /> value="org.hibernate.dialect.Oracle12cDialect" />
<property name="eclipselink.weaving.validation" value="false" /> <property name="javax.persistence.validation.mode"
value="NONE" />
<property name="eclipselink.weaving.validation" value="false" />
</properties> </properties>
<class>com.eactive.eai.rms.data.entity.onl.bzwkdstcd.UserBusiness</class> <class>com.eactive.eai.rms.data.entity.onl.bzwkdstcd.UserBusiness
</class>
<class>com.eactive.eai.data.entity.onl.unifbwk.UnifBwkTp</class> <class>com.eactive.eai.data.entity.onl.unifbwk.UnifBwkTp</class>
<exclude-unlisted-classes>false</exclude-unlisted-classes> <exclude-unlisted-classes>false</exclude-unlisted-classes>
</persistence-unit> </persistence-unit>
@@ -14,11 +17,14 @@
<provider>org.hibernate.jpa.HibernatePersistenceProvider</provider> <provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
<jta-data-source>jdbc/dsOBP_EMS</jta-data-source> <jta-data-source>jdbc/dsOBP_EMS</jta-data-source>
<properties> <properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.Oracle12cDialect" /> <property name="hibernate.dialect"
<property name="javax.persistence.validation.mode" value="NONE" /> value="org.hibernate.dialect.Oracle12cDialect" />
<property name="eclipselink.weaving.validation" value="false" /> <property name="javax.persistence.validation.mode"
value="NONE" />
<property name="eclipselink.weaving.validation" value="false" />
</properties> </properties>
<class>com.eactive.eai.rms.data.entity.onl.bzwkdstcd.UserBusiness</class> <class>com.eactive.eai.rms.data.entity.onl.bzwkdstcd.UserBusiness
</class>
<class>com.eactive.eai.data.entity.onl.unifbwk.UnifBwkTp</class> <class>com.eactive.eai.data.entity.onl.unifbwk.UnifBwkTp</class>
<exclude-unlisted-classes>false</exclude-unlisted-classes> <exclude-unlisted-classes>false</exclude-unlisted-classes>
</persistence-unit> </persistence-unit>
+12 -5
View File
@@ -41,7 +41,9 @@
</context:component-scan> </context:component-scan>
<!-- elink-common 적용 후 추가 --> <!-- elink-common 적용 후 추가 -->
<context:component-scan base-package="com.eactive.eai.adapter.loader" /> <context:component-scan
base-package="com.eactive.eai.adapter.loader">
</context:component-scan>
<context:component-scan base-package="com.eactive.eai.common.b2badaptermapping.loader"/> <context:component-scan base-package="com.eactive.eai.common.b2badaptermapping.loader"/>
<context:component-scan base-package="com.eactive.eai.common.b2bextractor.loader"/> <context:component-scan base-package="com.eactive.eai.common.b2bextractor.loader"/>
<context:component-scan base-package="com.eactive.eai.common.b2bservice.loader"/> <context:component-scan base-package="com.eactive.eai.common.b2bservice.loader"/>
@@ -64,10 +66,15 @@
<context:component-scan base-package="com.eactive.eai.common.sysdomain.loader"/> <context:component-scan base-package="com.eactive.eai.common.sysdomain.loader"/>
<context:component-scan base-package="com.eactive.eai.common.unifbwk.loader"/> <context:component-scan base-package="com.eactive.eai.common.unifbwk.loader"/>
<context:component-scan base-package="com.eactive.eai.common.usedate.loader"/> <context:component-scan base-package="com.eactive.eai.common.usedate.loader"/>
<context:component-scan base-package="com.eactive.eai.flowcontrol.jms.loader" /> <context:component-scan
<context:component-scan base-package="com.eactive.eai.inbound.error.loader" /> base-package="com.eactive.eai.flowcontrol.jms.loader">
<context:component-scan base-package="com.eactive.apim.portal" /> </context:component-scan>
<context:component-scan
base-package="com.eactive.eai.inbound.error.loader">
</context:component-scan>
<context:component-scan
base-package="com.eactive.apim.portal">
</context:component-scan>
<bean id="cacheManager" <bean id="cacheManager"
class="org.springframework.cache.ehcache.EhCacheCacheManager"> class="org.springframework.cache.ehcache.EhCacheCacheManager">
+4 -4
View File
@@ -52,10 +52,10 @@
</bean> </bean>
<!-- <bean id="passwordEncoder"--> <!-- <bean id="passwordEncoder"-->
<!-- class="org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder" />--> <!-- class="org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder" />-->
<bean id="passwordEncoder" class="org.springframework.security.crypto.password.StandardPasswordEncoder" /> <bean id="passwordEncoder"
class="org.springframework.security.crypto.password.StandardPasswordEncoder" />
<!-- 광주은행 전용 PasswordEncoder --> <bean id="kjbSafedbPasswordEncoder"
<bean id="kjbSafedbPasswordEncoder" class="com.eactive.ext.kjb.spring.KjbSafedbPasswordEncoder" /> class="com.eactive.eai.custom.kjb.common.spring.KjbSafedbPasswordEncoder" />
<import resource="applicationContext-datasource-${eai.datasource.type}.xml"/> <import resource="applicationContext-datasource-${eai.datasource.type}.xml"/>
<import resource="applicationContext-jdbc-${eai.datasource.type}.xml"/> <import resource="applicationContext-jdbc-${eai.datasource.type}.xml"/>
File diff suppressed because it is too large Load Diff
@@ -1,4 +1,4 @@
package com.eactive.ext.kjb.spring; package com.eactive.eai.custom.kjb.spring;
import com.eactive.ext.kjb.safedb.KjbSafedbWrapper; import com.eactive.ext.kjb.safedb.KjbSafedbWrapper;
import org.springframework.security.crypto.password.PasswordEncoder; import org.springframework.security.crypto.password.PasswordEncoder;
@@ -71,7 +71,6 @@ public class MonitoringFrontFilter implements Filter {
|| uri.indexOf(request.getContextPath() +"/LoginServlet") > -1 || uri.indexOf(request.getContextPath() +"/LoginServlet") > -1
|| uri.indexOf(request.getContextPath() +"/login/") > -1 || uri.indexOf(request.getContextPath() +"/login/") > -1
|| uri.indexOf(request.getContextPath() +"/dashboard") > -1 || uri.indexOf(request.getContextPath() +"/dashboard") > -1
|| uri.indexOf(request.getContextPath() +"/dashmain3.do") > -1
|| uri.indexOf(request.getContextPath() + "/loginForm.do") > -1 || uri.indexOf(request.getContextPath() + "/loginForm.do") > -1
|| uri.indexOf(request.getContextPath() + "/login.do") > -1 || uri.indexOf(request.getContextPath() + "/login.do") > -1
|| uri.indexOf(request.getContextPath() + "/ssoLogin.do") > -1 || uri.indexOf(request.getContextPath() + "/ssoLogin.do") > -1