This commit is contained in:
Rinjae
2025-10-23 13:21:43 +09:00
commit d6bf8e1943
1004 changed files with 192647 additions and 0 deletions
+78
View File
@@ -0,0 +1,78 @@
<?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:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:util="http://www.springframework.org/schema/util"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
">
<!-- fixed property -->
<!-- ${env['inst.Name']}"
<util:properties id="env" location="/WEB-INF/env.properties" />
-->
<context:property-placeholder location="/WEB-INF/*.properties" />
<!-- Framework DataSource -->
<!--
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="driverClassName" value="oracle.jdbc.driver.OracleDriver" />
<property name="url" value="jdbc:oracle:thin:@10.243.171.53:1550:DBJJBL" />
<property name="username" value="ELINKFEP" />
<property name="password" value="jjbfep07&amp;" />
<property name="initialSize" value="10" />
<property name="maxActive" value="10" />
<property name="maxIdle" value="10" />
<property name="maxWait" value="5000" />
</bean>
-->
<bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiName" value="jdbc/dsCHN_fep"/>
</bean>
<!-- Framework Initializer -->
<bean id="appInitializer" class="com.eactive.eai.common.web.AppInitializer">
<property name="dataSource" ref="dataSource"/>
<property name="instName" value="${inst.Name}"/>
<property name="tableOwner" value="${eai.tableowner}"/>
<property name="systemMode" value="${eai.systemmode}"/>
</bean>
<import resource="jms/applicationContext-jms.xml"/>
<!-- Remote Call RMI -->
<!--
<bean id="remoteProxy" class="com.eactive.eai.common.routing.rmi.RemoteProxyImpl">
</bean>
<bean id="rmiServiceExporter" class="org.springframework.remoting.rmi.RmiServiceExporter">
<property name="serviceName" value="RemoteProxy"/>
<property name="service" ref="remoteProxy"/>
<property name="serviceInterface" value="com.eactive.eai.common.routing.rmi.RemoteProxy"/>
< defaults to 1099 >
<property name="registryPort" value="1099"/>
</bean>
-->
<!-- MQ Service -->
<!-- relations : RULE(routing.connection.factory) -->
<!-- weblogic JMS Listener Service -->
<!-- activeMQ Listener Service -->
<!-- <import resource="mq/applicationContext-activemq.xml"/> -->
</beans>
@@ -0,0 +1,34 @@
<?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:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:util="http://www.springframework.org/schema/util"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
">
<bean id="TimerEventListener" class="com.eactive.eai.common.routing.jms.TimerEventListenerQueueConsumerService">
<property name="uri" value="jms/cft01BapConnectionFactory"/>
<property name="queue" value="jms/qu01Bap11Svr01TimerQueue"/>
<property name="maxThread" value="100"/>
</bean>
<bean id="JobPolingHandler" class="com.eactive.eai.common.routing.jms.JobPolingHandlerQueueConsumerService">
<property name="uri" value="jms/cft01BapConnectionFactory"/>
<property name="queue" value="jms/qu01Bap11Svr01JobQueue"/>
<property name="maxThread" value="100"/>
</bean>
<!-- Async Queue Consumer -->
</beans>
@@ -0,0 +1,34 @@
applicationContext-jms.xml<?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:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:util="http://www.springframework.org/schema/util"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
">
<bean id="TimerEventListener" class="com.eactive.eai.common.routing.jms.TimerEventListenerQueueConsumerService">
<property name="uri" value="jms/cft01BapConnectionFactory"/>
<property name="queue" value="jms/qu01Bap11Svr01TimerQueue"/>
<property name="maxThread" value="100"/>
</bean>
<bean id="JobPolingHandler" class="com.eactive.eai.common.routing.jms.JobPolingHandlerQueueConsumerService">
<property name="uri" value="jms/cft01BapConnectionFactory"/>
<property name="queue" value="jms/qu01Bap11Svr01JobQueue"/>
<property name="maxThread" value="100"/>
</bean>
<!-- Async Queue Consumer -->
</beans>
@@ -0,0 +1,34 @@
applicationContext-jms.xml<?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:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:util="http://www.springframework.org/schema/util"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
">
<bean id="TimerEventListener" class="com.eactive.eai.common.routing.jms.TimerEventListenerQueueConsumerService">
<property name="uri" value="jms/cft01BapConnectionFactory"/>
<property name="queue" value="jms/qu01Bap21Svr01TimerQueue"/>
<property name="maxThread" value="100"/>
</bean>
<bean id="JobPolingHandler" class="com.eactive.eai.common.routing.jms.JobPolingHandlerQueueConsumerService">
<property name="uri" value="jms/cft01BapConnectionFactory"/>
<property name="queue" value="jms/qu01Bap21Svr01JobQueue"/>
<property name="maxThread" value="100"/>
</bean>
<!-- Async Queue Consumer -->
</beans>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+88
View File
@@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>BAPAppWeb</display-name>
<filter>
<filter-name>FrontFilter</filter-name>
<filter-class>com.eactive.eai.agent.web.FrontFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>FrontFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<servlet>
<description></description>
<servlet-name>WebAgent</servlet-name>
<servlet-class>com.eactive.eai.agent.web.WebAgent</servlet-class>
</servlet>
<servlet>
<description></description>
<servlet-name>DBRefreshAgent</servlet-name>
<servlet-class>com.eactive.eai.agent.web.DBRefreshAgent</servlet-class>
</servlet>
<servlet>
<description></description>
<servlet-name>FepSendFile</servlet-name>
<servlet-class>com.eactive.eai.agent.web.FepSendFile</servlet-class>
</servlet>
<servlet>
<description></description>
<servlet-name>FepReqRecvFile</servlet-name>
<servlet-class>com.eactive.eai.agent.web.FepReqRecvFile</servlet-class>
</servlet>
<servlet>
<description></description>
<servlet-name>CheckFileSysHealth</servlet-name>
<servlet-class>com.eactive.eai.agent.web.CheckFileSysHealth</servlet-class>
</servlet>
<servlet>
<description></description>
<servlet-name>FepFileSend</servlet-name>
<servlet-class>com.eactive.eai.agent.web.FepFileSend</servlet-class>
</servlet>
<servlet>
<description></description>
<servlet-name>FepFileReceive</servlet-name>
<servlet-class>com.eactive.eai.agent.web.FepFileReceive</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>WebAgent</servlet-name>
<url-pattern>/WebAgent</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>DBRefreshAgent</servlet-name>
<url-pattern>/DBRefreshAgent</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>FepSendFile</servlet-name>
<url-pattern>/FepSendFile</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>FepReqRecvFile</servlet-name>
<url-pattern>/FepReqRecvFile</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>CheckFileSysHealth</servlet-name>
<url-pattern>/CheckFileSysHealth</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>FepFileSend</servlet-name>
<url-pattern>/FepFileSend</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>FepFileReceive</servlet-name>
<url-pattern>/FepFileReceive</url-pattern>
</servlet-mapping>
</web-app>
+5
View File
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<wls:weblogic-web-app xmlns:wls="http://xmlns.oracle.com/weblogic/weblogic-web-app" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd http://xmlns.oracle.com/weblogic/weblogic-web-app http://xmlns.oracle.com/weblogic/weblogic-web-app/1.7/weblogic-web-app.xsd">
<wls:weblogic-version>12.1.3</wls:weblogic-version>
<wls:context-root>BAPWeb</wls:context-root>
</wls:weblogic-web-app>