init
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
Manifest-Version: 1.0
|
||||
Class-Path:
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Context sessionCookieName="RMS_JSESSIONID">
|
||||
<Resource name="jndi/dsAPIGW" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="apigw" password="apigw"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://127.0.0.1:25432/apigw" />
|
||||
<Resource name="jndi/dsEMS" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="ems" password="emsadmin"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://127.0.0.1:25432/ems" />
|
||||
</Context>
|
||||
@@ -0,0 +1,97 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Context sessionCookieName="RMS_JSESSIONID">
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
<!-- MCC -->
|
||||
<Resource name="jndi/DMCC_IIAAPP_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="mci" password="mciadmin"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://db:5432/mci" />
|
||||
<!-- MCU -->
|
||||
<Resource name="jndi/DMCU_IIAAPP_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="mci" password="mciadmin"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://db:5432/mci" />
|
||||
<!-- EAI -->
|
||||
<Resource name="jndi/DEAI_IICAPP_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="eai" password="eaiadmin"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://db:5432/eai" />
|
||||
<!-- FEP -->
|
||||
<Resource name="jndi/DFEP_IIBAPP_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="fep" password="fepadmin"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://db:5432/fep" />
|
||||
<!-- 모니터링 -->
|
||||
<Resource name="jndi/DEAI_IFMPKG_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="ems" password="emsadmin"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://db:5432/ems" />
|
||||
<!-- BAT -->
|
||||
<Resource name="jndi/DEAI_IICBAT_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="fep" password="fepadmin"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://db:5432/fep" />
|
||||
<!-- BAP -->
|
||||
<Resource name="jndi/DFEP_IIBBAT_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="fep" password="fepadmin"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://db:5432/fep" />
|
||||
</Context>
|
||||
@@ -0,0 +1,91 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Context sessionCookieName="RMS_JSESSIONID">
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
<!-- MCI -->
|
||||
<Resource name="jndi/DMCI_IIAAPP_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="mci" password="elink"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://192.168.45.150:5433/mci" />
|
||||
<!-- EAI -->
|
||||
<Resource name="jndi/DEAI_IICAPP_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="eai" password="elink"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://192.168.45.150:5433/eai" />
|
||||
<!-- FEP -->
|
||||
<Resource name="jndi/DFEP_IIBAPP_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="fep" password="elink"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://192.168.45.150:5433/fep" />
|
||||
<!-- 모니터링 -->
|
||||
<Resource name="jndi/DEAI_IFMPKG_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="ems" password="elink"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://192.168.45.150:5433/ems" />
|
||||
<!-- BAT -->
|
||||
<Resource name="jndi/DEAI_IICBAT_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="fep" password="elink"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://192.168.45.150:5433/fep" />
|
||||
<!-- BAP -->
|
||||
<Resource name="jndi/DFEP_IIBBAT_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="fep" password="elink"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://192.168.45.150:5433/fep" />
|
||||
</Context>
|
||||
@@ -0,0 +1,90 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Context sessionCookieName="IIM_JSESSIONID">
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
<!-- MCC -->
|
||||
<Resource name="jndi/DMCC_IIAAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="mci" password="mciadmin" driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://192.168.8.21:5433/mci"/>
|
||||
<!-- MCU -->
|
||||
<Resource name="jndi/DMCU_IIAAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="mci" password="mciadmin" driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://192.168.8.21:5433/mci"/>
|
||||
<!-- EAI -->
|
||||
<Resource name="jndi/DEAI_IICAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="eai" password="eaiadmin" driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://192.168.8.21:5433/eai"/>
|
||||
<!-- FEP -->
|
||||
<Resource name="jndi/DFEP_IIBAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="fep" password="fepadmin" driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://192.168.8.21:5433/fep"/>
|
||||
<!-- 모니터링 -->
|
||||
<Resource name="jndi/DEAI_IFMPKG_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="ems" password="emsadmin" driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://192.168.8.21:5433/ems"/>
|
||||
<!-- BAT -->
|
||||
<Resource name="jndi/DEAI_IICBAT_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="fep" password="fepadmin" driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://192.168.8.21:5433/fep"/>
|
||||
<!-- BAP -->
|
||||
<Resource name="jndi/DFEP_IIBBAT_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="fep" password="fepadmin" driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://192.168.8.21:5433/fep"/>
|
||||
</Context>
|
||||
@@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Context sessionCookieName="RMS_JSESSIONID">
|
||||
<!-- MCI -->
|
||||
<Resource name="jndi/DMCI_IIAAPP_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="mci" password="mciadmin"
|
||||
driverClassName="com.mysql.cj.jdbc.Driver"
|
||||
url="jdbc:mysql://localhost:3306/eai?useSSL=false&characterEncoding=euckr" />
|
||||
<!-- MCU -->
|
||||
<Resource name="jndi/DMCU_IIAAPP_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="mci" password="mciadmin"
|
||||
driverClassName="com.mysql.cj.jdbc.Driver"
|
||||
url="jdbc:mysql://localhost:3306/eai?useSSL=false&characterEncoding=euckr" />
|
||||
<!-- EAI -->
|
||||
<Resource name="jndi/DEAI_IICAPP_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="eai" password="eaiadmin"
|
||||
driverClassName="com.mysql.cj.jdbc.Driver"
|
||||
url="jdbc:mysql://localhost:3306/eai?useSSL=false&characterEncoding=euckr" />
|
||||
<!-- FEP -->
|
||||
<Resource name="jndi/DFEP_IIBAPP_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="fep" password="fepadmin"
|
||||
driverClassName="com.mysql.cj.jdbc.Driver"
|
||||
url="jdbc:mysql://localhost:3306/eai?useSSL=false&characterEncoding=euckr" />
|
||||
<!-- 모니터링 -->
|
||||
<Resource name="jndi/DEAI_IFMPKG_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="ems" password="emsadmin"
|
||||
driverClassName="com.mysql.cj.jdbc.Driver"
|
||||
url="jdbc:mysql://localhost:3306/ems?useSSL=false&characterEncoding=euckr" />
|
||||
<!-- BAT -->
|
||||
<Resource name="jndi/DEAI_IICBAT_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="fep" password="fepadmin"
|
||||
driverClassName="com.mysql.cj.jdbc.Driver"
|
||||
url="jdbc:mysql://localhost:3306/fep?useSSL=false&characterEncoding=euckr" />
|
||||
<!-- BAP -->
|
||||
<Resource name="jndi/DFEP_IIBBAT_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="fep" password="fepadmin"
|
||||
driverClassName="com.mysql.cj.jdbc.Driver"
|
||||
url="jdbc:mysql://localhost:3306/fep?useSSL=false&characterEncoding=euckr" />
|
||||
</Context>
|
||||
@@ -0,0 +1,103 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Context sessionCookieName="RMS_JSESSIONID">
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
<!-- MCI -->
|
||||
<Resource name="jndi/DMCI_IIAAPP_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="mci" password="mciadmin"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://localhost:5433/mci" />
|
||||
<!-- MCU -->
|
||||
<Resource name="jndi/DMCU_IIAAPP_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="mci" password="mciadmin"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://localhost:5433/mci" />
|
||||
<!-- EAI -->
|
||||
<Resource name="jndi/DEAI_IICAPP_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="eai" password="eaiadmin"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://localhost:5433/eai" />
|
||||
<!-- FEP -->
|
||||
<Resource name="jndi/DFEP_IIBAPP_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="fep" password="fepadmin"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://localhost:5433/fep" />
|
||||
<!-- OPA -->
|
||||
<Resource name="jndi/DOPA_IIFAPP_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="opa" password="opaadmin"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://localhost:5433/opa" />
|
||||
<!-- 모니터링 -->
|
||||
<Resource name="jndi/DEAI_IFMPKG_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="ems" password="emsadmin"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://localhost:5433/ems" />
|
||||
<!-- BAT -->
|
||||
<Resource name="jndi/DEAI_IICBAT_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="fep" password="fepadmin"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://localhost:5433/fep" />
|
||||
<!-- BAP -->
|
||||
<Resource name="jndi/DFEP_IIBBAT_N" auth="Container"
|
||||
type="javax.sql.DataSource" maxTotal="10" maxIdle="10"
|
||||
maxWaitMillis="10000" username="fep" password="fepadmin"
|
||||
driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://localhost:5433/fep" />
|
||||
</Context>
|
||||
@@ -0,0 +1,69 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Context>
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
<!-- MCC -->
|
||||
<Resource name="jndi/DMCC_IIAAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IIAPKG" password="elink" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//192.168.120.216:1522/XE"/>
|
||||
<!-- MCU -->
|
||||
<Resource name="jndi/DMCU_IIAAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IIUPKG" password="elink" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//192.168.120.216:1522/XE"/>
|
||||
|
||||
<!-- EAI -->
|
||||
<Resource name="jndi/DEAI_IICAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IICPKG" password="elink" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//192.168.120.216:1522/XE"/>
|
||||
|
||||
<!-- FEP -->
|
||||
<Resource name="jndi/DFEP_IIBAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IIBPKG" password="elink" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//192.168.120.216:1522/XE"/>
|
||||
|
||||
<!-- 모니터링 -->
|
||||
<Resource name="jndi/DEAI_IFMPKG_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IFMPKG" password="elink" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//192.168.120.216:1522/XE"/>
|
||||
|
||||
<!-- BAT -->
|
||||
<Resource name="jndi/DEAI_IICBAT_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IFTPKG" password="elink" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//192.168.120.216:1522/XE"/>
|
||||
<!-- BAP -->
|
||||
<Resource name="jndi/DFEP_IIBBAT_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IFBPKG" password="elink" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//192.168.120.216:1522/XE"/>
|
||||
|
||||
</Context>
|
||||
@@ -0,0 +1,64 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Context>
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
<!-- MCC -->
|
||||
<Resource name="jndi/DMCC_IIAAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="mci" password="mciadmin" driverClassName="com.mysql.cj.jdbc.Driver"
|
||||
url="jdbc:mysql://192.168.8.21:4306/mci?useSSL=false&characterEncoding=euckr"/>
|
||||
<!-- MCU -->
|
||||
<Resource name="jndi/DMCU_IIAAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="mci" password="mciadmin" driverClassName="com.mysql.cj.jdbc.Driver"
|
||||
url="jdbc:mysql://192.168.8.21:4306/mci?useSSL=false&characterEncoding=euckr"/>
|
||||
<!-- EAI -->
|
||||
<Resource name="jndi/DEAI_IICAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="eai" password="eaiadmin" driverClassName="com.mysql.cj.jdbc.Driver"
|
||||
url="jdbc:mysql://192.168.8.21:4306/eai?useSSL=false&characterEncoding=euckr"/>
|
||||
<!-- FEP -->
|
||||
<Resource name="jndi/DFEP_IIBAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="fep" password="fepadmin" driverClassName="com.mysql.cj.jdbc.Driver"
|
||||
url="jdbc:mysql://192.168.8.21:4306/fep?useSSL=false&characterEncoding=euckr"/>
|
||||
<!-- 모니터링 -->
|
||||
<Resource name="jndi/DEAI_IFMPKG_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="ems" password="emsadmin" driverClassName="com.mysql.cj.jdbc.Driver"
|
||||
url="jdbc:mysql://192.168.8.21:4306/ems?useSSL=false&characterEncoding=euckr"/>
|
||||
<!-- BAT -->
|
||||
<Resource name="jndi/DEAI_IICBAT_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="fep" password="fepadmin" driverClassName="com.mysql.cj.jdbc.Driver"
|
||||
url="jdbc:mysql://192.168.8.21:4306/fep?useSSL=false&characterEncoding=euckr"/>
|
||||
<!-- BAP -->
|
||||
<Resource name="jndi/DFEP_IIBBAT_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="fep" password="fepadmin" driverClassName="com.mysql.cj.jdbc.Driver"
|
||||
url="jdbc:mysql://192.168.8.21:4306/fep?useSSL=false&characterEncoding=euckr"/>
|
||||
</Context>
|
||||
@@ -0,0 +1,104 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Context sessionCookieName="RMS_JSESSIONID">
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
<!-- MCI
|
||||
<Resource name="jndi/DMCC_IIAAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="eai" password="elink" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@192.168.10.80:15226:ORCL"/>
|
||||
-->
|
||||
|
||||
<!-- MCU
|
||||
<Resource name="jndi/DMCU_IIAAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="eai" password="elink" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@192.168.10.80:15226:ORCL"/>
|
||||
-->
|
||||
|
||||
<!-- EAI -->
|
||||
<Resource name="jndi/DEAI_IICAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IICPKG" password="elink" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@192.168.10.80:15226:ORCL"/>
|
||||
|
||||
<!-- FEP
|
||||
<Resource name="jndi/DFEP_IIBAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="eai" password="elink" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@192.168.10.80:15226:ORCL"/>
|
||||
-->
|
||||
<!-- OPA
|
||||
<Resource name="jndi/DOPA_IIFAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="eai" password="elink" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@192.168.10.80:15226:ORCL"/>
|
||||
-->
|
||||
<!-- 모니터링 -->
|
||||
<Resource name="jndi/DEAI_IFMPKG_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IFMPKG" password="elink" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@192.168.10.80:15226:ORCL"/>
|
||||
|
||||
<!-- BAT
|
||||
<Resource name="jndi/DEAI_IICBAT_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IFSPKG " password="elink" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@192.168.10.80:15226:ORCL"/>
|
||||
-->
|
||||
<!-- BAP -->
|
||||
<Resource name="jndi/DFEP_IIBBAT_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IFBPKG" password="elink" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@192.168.10.80:15226:ORCL"/>
|
||||
</Context>
|
||||
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Context>
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
<Resource name="jdbc/dsCHN_eai" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="eai" password="eai" driverClassName="oracle.jdbc.driver.OracleDriver"
|
||||
url="jdbc:oracle:thin:@localhost:1521:EAIDB"/>
|
||||
<Resource name="jdbc/dsCHN_fep" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="fep" password="fep" driverClassName="oracle.jdbc.driver.OracleDriver"
|
||||
url="jdbc:oracle:thin:@localhost:1521:EAIDB"/>
|
||||
<Resource name="jdbc/dsIMA_imaeai" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="eai" password="eai" driverClassName="oracle.jdbc.driver.OracleDriver"
|
||||
url="jdbc:oracle:thin:@localhost:1521:EAIDB"/>
|
||||
</Context>
|
||||
@@ -0,0 +1,94 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Context sessionCookieName="IIM_JSESSIONID">
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
<!-- MCC -->
|
||||
<Resource name="jndi/DMCC_IIAAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IIAPKG" password="IIAPKG" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//192.168.8.101:1521/hanacap"/>
|
||||
<!-- MCU -->
|
||||
<Resource name="jndi/DMCU_IIAAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IIUPKG" password="IIUPKG" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//192.168.8.101:1521/hanacap"/>
|
||||
<!-- EAI -->
|
||||
<Resource name="jndi/DEAI_IICAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IICPKG" password="IICPKG" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//192.168.8.101:1521/hanacap"/>
|
||||
<!-- FEP -->
|
||||
<Resource name="jndi/DFEP_IIBAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IIBPKG" password="IIBPKG" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//192.168.8.101:1521/hanacap"/>
|
||||
|
||||
<!-- 모니터링 -->
|
||||
<Resource name="jndi/DEAI_IFMPKG_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IFMPKG" password="IFMPKG" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//192.168.8.101:1521/hanacap"/>
|
||||
|
||||
<!-- BAT -->
|
||||
<Resource name="jndi/DEAI_IICBAT_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IFTPKG" password="IFTPKG" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//192.168.8.101:1521/hanacap"/>
|
||||
|
||||
<!-- BAP -->
|
||||
<Resource name="jndi/DFEP_IIBBAT_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IFBPKG" password="IFBPKG" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//192.168.8.101:1521/hanacap"/>
|
||||
|
||||
</Context>
|
||||
@@ -0,0 +1,90 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Context sessionCookieName="IIM_JSESSIONID">
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
<!-- MCC -->
|
||||
<Resource name="jndi/DMCC_IIAAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="mci" password="mciadmin" driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://192.168.8.21:5433/mci"/>
|
||||
<!-- MCU -->
|
||||
<Resource name="jndi/DMCU_IIAAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="mci" password="mciadmin" driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://192.168.8.21:5433/mci"/>
|
||||
<!-- EAI -->
|
||||
<Resource name="jndi/DEAI_IICAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="eai" password="eaiadmin" driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://192.168.8.21:5433/eai"/>
|
||||
<!-- FEP -->
|
||||
<Resource name="jndi/DFEP_IIBAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="fep" password="fepadmin" driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://192.168.8.21:5433/fep"/>
|
||||
<!-- 모니터링 -->
|
||||
<Resource name="jndi/DEAI_IFMPKG_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="ems" password="emsadmin" driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://192.168.8.21:5433/ems"/>
|
||||
<!-- BAT -->
|
||||
<Resource name="jndi/DEAI_IICBAT_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="fep" password="fepadmin" driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://192.168.8.21:5433/fep"/>
|
||||
<!-- BAP -->
|
||||
<Resource name="jndi/DFEP_IIBBAT_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="fep" password="fepadmin" driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://192.168.8.21:5433/fep"/>
|
||||
</Context>
|
||||
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Context>
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
<Resource name="jdbc/dsCHN_eai" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="eai" password="eaiadmin" driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://localhost:5432/eai"/>
|
||||
<Resource name="jdbc/dsCHN_fep" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="fep" password="fepadmin" driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://localhost:5432/fep"/>
|
||||
<Resource name="jdbc/dsIMA_imaeai" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="eai" password="eaiadmin" driverClassName="org.postgresql.Driver"
|
||||
url="jdbc:postgresql://localhost:5432/eai"/>
|
||||
</Context>
|
||||
@@ -0,0 +1,96 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Context>
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
<!-- MCC -->
|
||||
<Resource name="jndi/PMCC_IIAAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IIAAPP" password="iiaapp2021!" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//pmccdb01.pobis.kr:11521/PMCCDB"/>
|
||||
<!-- MCU -->
|
||||
<Resource name="jndi/PMCU_IIAAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IIAAPP" password="iiaapp2021!" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//pmcudb01.pobis.kr:11521/PMCUDB"/>
|
||||
|
||||
<!-- EAI -->
|
||||
<Resource name="jndi/PEAI_IICAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IICAPP" password="iicapp2021!" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//peaidb01.pobis.kr:11521/PEAIDB"/>
|
||||
|
||||
<!-- FEP -->
|
||||
<Resource name="jndi/PFEP_IIBAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IIBAPP" password="iibapp2021!" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//pfepdb01.pobis.kr:11521/PFEPDB"/>
|
||||
|
||||
<!-- 모니터링 -->
|
||||
<Resource name="jndi/PEAI_IFMPKG_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IICAPP" password="iicapp2021!" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//peaidb01.pobis.kr:11521/PEAIDB"/>
|
||||
|
||||
<!-- BAT -->
|
||||
<Resource name="jndi/PEAI_IICBAT_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IICBAT" password="iicbat2021!" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//peaidb01.pobis.kr:11521/PEAIDB"/>
|
||||
|
||||
<!-- BAP -->
|
||||
<Resource name="jndi/PFEP_IIBBAT_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IIBBAT" password="iibbat2021!" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//pfepdb01.pobis.kr:11521/PFEPDB"/>
|
||||
|
||||
</Context>
|
||||
@@ -0,0 +1,70 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Context sessionCookieName="RMS_JSESSIONID">
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
<!-- git update-index - -skip-worktree context.xml -->
|
||||
<Resource name="NDAPIGW_APP_NXA" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" initialSize="10" maxIdle="10" maxActive="10" maxWaitMillis="10000"
|
||||
poolPreparedStatements="true" validationQuery="SELECT 1" validationInterval="600000"
|
||||
username="apigw" password="apigw" driverClassName="com.mysql.cj.jdbc.Driver"
|
||||
url="jdbc:mysql://192.168.8.30:13306/apigw"/>
|
||||
<Resource name="NDAPIMS_APP_NXA" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" initialSize="10" maxIdle="10" maxActive="10" maxWaitMillis="10000"
|
||||
poolPreparedStatements="true" validationQuery="SELECT 1" validationInterval="600000"
|
||||
username="apims" password="apims" driverClassName="com.mysql.cj.jdbc.Driver"
|
||||
url="jdbc:mysql://192.168.8.30:13306/apims"/>
|
||||
<Resource name="API_APP_NXA" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="10" initialSize="10" maxIdle="10" maxActive="10" maxWaitMillis="10000"
|
||||
poolPreparedStatements="true" validationQuery="SELECT 1" validationInterval="600000"
|
||||
username="apims" password="apims" driverClassName="com.mysql.cj.jdbc.Driver"
|
||||
url="jdbc:mysql://192.168.8.30:13306/apims"/>
|
||||
</Context>
|
||||
@@ -0,0 +1,65 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Context>
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
<!-- MCC -->
|
||||
<Resource name="jndi/DMCC_IIAAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IIAAPP" password="iiaapp2021!" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//172.16.141.11:11521/DMCCDB"/>
|
||||
<!-- MCU -->
|
||||
<Resource name="jndi/DMCU_IIAAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IIAAPP" password="iiaapp2021!" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//172.16.141.21:11521/DMCUDB"/>
|
||||
|
||||
<!-- FEP -->
|
||||
<Resource name="jndi/DFEP_IIBAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IIBAPP" password="iibapp2021!" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//172.16.142.11:11521/DFEPDB"/>
|
||||
<!-- BAP -->
|
||||
<Resource name="jndi/DFEP_IIBBAT_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IIBBAT" password="iibbat2021!" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//172.16.142.11:11521/DFEPDB"/>
|
||||
|
||||
<!-- 모니터링 및 EAI -->
|
||||
<Resource name="jndi/DEAI_IICAPP_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IICAPP" password="iicapp2021!" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//172.16.141.31:11521/DEAIDB"/>
|
||||
|
||||
<!-- BAT -->
|
||||
<Resource name="jndi/DEAI_IICBAT_N" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IICBAT" password="iicbat2021!" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//172.16.141.31:11521/DEAIDB"/>
|
||||
|
||||
|
||||
|
||||
</Context>
|
||||
@@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Context>
|
||||
|
||||
<!-- maxTotal: Maximum number of database connections in pool. Make sure you
|
||||
configure your mysqld max_connections large enough to handle
|
||||
all of your db connections. Set to -1 for no limit.
|
||||
-->
|
||||
|
||||
<!-- maxIdle: Maximum number of idle database connections to retain in pool.
|
||||
Set to -1 for no limit. See also the DBCP documentation on this
|
||||
and the minEvictableIdleTimeMillis configuration parameter.
|
||||
-->
|
||||
|
||||
<!-- maxWaitMillis: Maximum time to wait for a database connection to become available
|
||||
in ms, in this example 10 seconds. An Exception is thrown if
|
||||
this timeout is exceeded. Set to -1 to wait indefinitely.
|
||||
-->
|
||||
|
||||
<!-- username and password: MySQL username and password for database connections -->
|
||||
|
||||
<!-- driverClassName: Class name for the old mm.mysql JDBC driver is
|
||||
org.gjt.mm.mysql.Driver - we recommend using Connector/J though.
|
||||
Class name for the official MySQL Connector/J driver is com.mysql.jdbc.Driver.
|
||||
-->
|
||||
|
||||
<!-- url: The JDBC connection url for connecting to your MySQL database.
|
||||
-->
|
||||
|
||||
<Resource name="jdbc/IEAIDB_N_DS02" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="IFMPKG" password="IFMPKG2021!" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//192.168.103.53:11521/IEAIDB"/>
|
||||
<Resource name="jdbc/IICIDB_N_DS01" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="ICIPKG" password="ICIPKG2021!" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//192.168.103.33:11521/IICIDB"/>
|
||||
<Resource name="jdbc/IECIDB_N_DS01" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="ECIPKG" password="ECIPKG2021!" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//192.168.103.43:11521/IECIDB"/>
|
||||
<Resource name="jdbc/IEAIDB_N_DS03" auth="Container" type="javax.sql.DataSource"
|
||||
maxTotal="20" maxIdle="10" maxWaitMillis="10000"
|
||||
username="EAIPKG" password="EAIPKG2021!" driverClassName="oracle.jdbc.OracleDriver"
|
||||
url="jdbc:oracle:thin:@//192.168.103.53:11521/IEAIDB"/>
|
||||
</Context>
|
||||
Reference in New Issue
Block a user