Revert "빌드 오류 임시 대응"

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