2018-06-19 07:52:20 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
|
|
|
|
version="3.1">
|
|
|
|
|
|
|
|
<!--监听器-->
|
|
|
|
<listener>
|
|
|
|
<listener-class>com.cpic.telsale.SessionListener.SessionListener</listener-class>
|
|
|
|
</listener>
|
|
|
|
|
|
|
|
<!--参数-->
|
|
|
|
<session-config>
|
|
|
|
<session-timeout>10</session-timeout>
|
|
|
|
</session-config>
|
|
|
|
|
|
|
|
<!--全局的参数-->
|
|
|
|
<context-param>
|
|
|
|
<param-name>临时文件根目录</param-name>
|
|
|
|
<param-value>temporaryFiles</param-value>
|
|
|
|
</context-param>
|
|
|
|
<context-param>
|
|
|
|
<param-name>oracleURL</param-name>
|
2021-06-23 03:40:48 +00:00
|
|
|
<param-value>jdbc:oracle:thin:@10.39.0.85:1521:dev01</param-value>
|
2018-06-19 07:52:20 +00:00
|
|
|
</context-param>
|
|
|
|
<context-param>
|
|
|
|
<param-name>oracleUserName</param-name>
|
|
|
|
<param-value>telsale</param-value>
|
|
|
|
</context-param>
|
|
|
|
<context-param>
|
|
|
|
<param-name>oraclePassword</param-name>
|
2021-06-23 03:40:48 +00:00
|
|
|
<param-value>Cpic#1234</param-value>
|
2018-06-19 07:52:20 +00:00
|
|
|
</context-param>
|
|
|
|
<context-param>
|
|
|
|
<param-name>informixURL</param-name>
|
2018-07-26 09:34:22 +00:00
|
|
|
<param-value>jdbc:informix-sqli://10.187.11.163:9096/ywgl_xm:INFORMIXSERVER=pxmcx2;newcodeset=GBK,8859-1,819;user=ccx99;password=ct0IT17!</param-value>
|
2018-06-19 07:52:20 +00:00
|
|
|
</context-param>
|
2021-06-23 08:26:21 +00:00
|
|
|
<context-param>
|
|
|
|
<param-name>ora_telsale_url</param-name>
|
|
|
|
<param-value>jdbc:oracle:thin:@10.39.0.85:1521:dev01;user=telsale;password=Cpic%231234;</param-value>
|
|
|
|
</context-param>
|
2018-08-01 11:15:28 +00:00
|
|
|
<context-param>
|
|
|
|
<param-name>ora_xmcx1_url</param-name>
|
2021-06-23 08:26:21 +00:00
|
|
|
<param-value>jdbc:oracle:thin:@10.39.0.86:1521:xmcx1;user=ywglxt;password=ywglxt;</param-value>
|
2018-08-01 11:15:28 +00:00
|
|
|
</context-param>
|
|
|
|
<context-param>
|
|
|
|
<param-name>ora_jgy_url</param-name>
|
2021-06-23 08:26:21 +00:00
|
|
|
<param-value>jdbc:oracle:thin:@10.187.11.164:1521:xmcx1;user=ywglxt;password=ywglxt;</param-value>
|
2018-08-01 11:15:28 +00:00
|
|
|
</context-param>
|
2018-06-21 06:39:11 +00:00
|
|
|
<context-param>
|
|
|
|
<param-name>telsalePolicyOperatorListTableName</param-name>
|
2018-06-21 09:38:25 +00:00
|
|
|
<param-value>w_dxbd_i</param-value>
|
2018-06-21 06:39:11 +00:00
|
|
|
</context-param>
|
2018-06-19 07:52:20 +00:00
|
|
|
|
|
|
|
<!--Servlet设置-->
|
|
|
|
<servlet>
|
|
|
|
<servlet-name>UploadDataProcessor</servlet-name>
|
|
|
|
<servlet-class>com.cpic.telsale.uploadData.uploadDataProcessor</servlet-class>
|
|
|
|
</servlet>
|
|
|
|
|
|
|
|
<servlet-mapping>
|
|
|
|
<servlet-name>UploadDataProcessor</servlet-name>
|
|
|
|
<url-pattern>/upload-policy-data</url-pattern>
|
|
|
|
</servlet-mapping>
|
|
|
|
|
|
|
|
</web-app>
|