保存小修改!

This commit is contained in:
Kane Wang 2022-03-22 18:01:36 +08:00
parent be919a1d3a
commit c588131c12
4 changed files with 20 additions and 6 deletions

View File

@ -1,5 +1,6 @@
{
"tns_name": "xmcx1",
"ip_addr": "10.39.0.86",
"user_name": ""
"user_name": "",
"password": ""
}

View File

@ -5,7 +5,8 @@
</component>
<component name="ChangeListManager">
<list default="true" id="59c1e2ec-34de-447f-b370-673ce36f3f54" name="Changes" comment="">
<change beforePath="$PROJECT_DIR$/disaster_warning.iml" beforeDir="false" afterPath="$PROJECT_DIR$/disaster_warning.iml" afterDir="false" />
<change afterPath="$PROJECT_DIR$/src/main/java/com/cpic/xim/config/db/OracleConfig.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/db.json" beforeDir="false" afterPath="$PROJECT_DIR$/db.json" afterDir="false" />
<change beforePath="$PROJECT_DIR$/disaster_warning.iws" beforeDir="false" afterPath="$PROJECT_DIR$/disaster_warning.iws" afterDir="false" />
<change beforePath="$PROJECT_DIR$/pom.xml" beforeDir="false" afterPath="$PROJECT_DIR$/pom.xml" afterDir="false" />
</list>
@ -356,7 +357,7 @@
<workItem from="1647593338220" duration="603000" />
<workItem from="1647833533865" duration="634000" />
<workItem from="1647850946832" duration="870000" />
<workItem from="1647913554783" duration="662000" />
<workItem from="1647913554783" duration="4765000" />
</task>
<servers />
</component>

View File

@ -59,9 +59,9 @@
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc8</artifactId>
<version>12.2.0.1</version>
<scope>system</scope>
<systemPath>${basedir}/lib/ojdbc8.jar</systemPath>
<version>12.2.0.1</version>
<scope>system</scope>
<systemPath>${basedir}/lib/ojdbc8.jar</systemPath>
</dependency>
</dependencies>
<properties>

View File

@ -0,0 +1,12 @@
package com.cpic.xim.config.db;
import java.util.Map;
public class OracleConfig
{
private String tnsName;
private String ipAddr;
private String userName;
private String password;
private Map<String, String> tables;
}