作者 朱兆平

默认配置更改

#log4j=/home/imf/log_api.xml
isneedlog=Y
#log4j=log_api.xml
isneedlog=N
#psip=218.28.199.134
psip=10.50.3.74
psport=7484
... ...
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
<log4j:configuration xmlns:log4j='http://jakarta.apache.org/log4j/'>
<appender name="INFOFILE" class="org.apache.log4j.RollingFileAppender">
<param name="File" value="Logs/INFO.log" />
<param name="MaxFileSize" value="3000KB" />
<param name="MaxBackupIndex" value="20" />
<param name="Encoding" value="UTF-8" />
<layout class="org.apache.log4j.PatternLayout">
<param name="ConversionPattern" value="[runtime] %d -%-4r [%t] %x - %m%n" />
</layout>
<filter class="org.apache.log4j.varia.LevelRangeFilter">
<param name="levelMin" value="debug" />
<param name="levelMax" value="info" />
<param name="AcceptOnMatch" value="true" />
</filter>
</appender>
<appender name="ERRFILE" class="org.apache.log4j.RollingFileAppender">
<param name="File" value="Logs/ERROR.log" />
<param name="MaxFileSize" value="3000KB" />
<param name="MaxBackupIndex" value="20" />
<param name="Encoding" value="UTF-8" />
<layout class="org.apache.log4j.PatternLayout">
<param name="ConversionPattern" value="[runtime] %d -%-4r [%t] %x - %m%n" />
</layout>
<filter class="org.apache.log4j.varia.LevelRangeFilter">
<param name="levelMin" value="error" />
<param name="levelMax" value="error" />
<param name="AcceptOnMatch" value="true" />
</filter>
</appender>
<appender name="WSINFOFILE" class="org.apache.log4j.RollingFileAppender">
<param name="File" value="Logs/wsINFO.log" />
<param name="MaxFileSize" value="3000KB" />
<param name="MaxBackupIndex" value="20" />
<param name="Encoding" value="UTF-8" />
<layout class="org.apache.log4j.PatternLayout">
<param name="ConversionPattern" value="[runtime] %d -%-4r [%t] %x - %m%n" />
</layout>
<filter class="org.apache.log4j.varia.LevelRangeFilter">
<param name="levelMin" value="debug" />
<param name="levelMax" value="info" />
<param name="AcceptOnMatch" value="true" />
</filter>
</appender>
<appender name="WSERRFILE" class="org.apache.log4j.RollingFileAppender">
<param name="File" value="Logs/wsERROR.log" />
<param name="MaxFileSize" value="3000KB" />
<param name="MaxBackupIndex" value="20" />
<param name="Encoding" value="UTF-8" />
<layout class="org.apache.log4j.PatternLayout">
<param name="ConversionPattern" value="[runtime] %d -%-4r [%t] %x - %m%n" />
</layout>
<filter class="org.apache.log4j.varia.LevelRangeFilter">
<param name="levelMin" value="error" />
<param name="levelMax" value="error" />
<param name="AcceptOnMatch" value="true" />
</filter>
</appender>
<logger name="apiLog">
<level value="INFO" />
<appender-ref ref="INFOFILE" />
<appender-ref ref="ERRFILE" />
</logger>
<logger name="WS">
<appender-ref ref="WSINFOFILE" />
<appender-ref ref="WSERRFILE" />
</logger>
<root>
<priority value="ERROR" />
</root>
</log4j:configuration>
\ No newline at end of file
... ...
... ... @@ -17,13 +17,6 @@ public class Main {
public static boolean isSuc = true;
public static IMFClient client = null;
public static void sendMsg(String msg){
if (!msg.equals(null) && !msg.isEmpty()){
}
}
private static void start() throws Exception {
PropertyConfigurator.configure("config/log4j.properties");
... ... @@ -34,7 +27,7 @@ public class Main {
while (true) {
if (client != null) {
IMF_Reader reader = new IMF_Reader(client);
if (!reader.isrunning) {
if (!IMF_Reader.isrunning) {
reader.start();
logger.info("*********KAKO读取线程已开启***********");
} else {
... ... @@ -42,7 +35,7 @@ public class Main {
}
IMF_Sender kako_sender = new IMF_Sender(client);
if(!kako_sender.isrunning) {
if(!IMF_Sender.isrunning) {
kako_sender.start();
}
}
... ...
... ... @@ -15,6 +15,7 @@ public class IMF_Reader extends Thread{
this.client = client;
}
@Override
public void run() {
try{
isrunning =true;
... ...
... ... @@ -25,6 +25,7 @@ public class IMF_Sender extends Thread{
this.content = content;
}
@Override
public void run(){
try {
String sendDir = FileTool.readProperties("readDirectory");
... ...
package com.tianbo.util.XML;
import org.jdom.Element;
public class SubNode {
private Element element;
public SubNode(Element element) {
this.element = element;
}
public Element getElement() {
return this.element;
}
public void setElement(Element element) {
this.element = element;
}
}
package com.tianbo.util.XML;
import org.jdom.Document;
import org.jdom.Element;
import org.jdom.JDOMException;
import org.jdom.input.SAXBuilder;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.xml.sax.InputSource;
import java.io.IOException;
import java.io.StringReader;
import java.util.*;
public class XMLParse {
private static final Logger logger = LoggerFactory.getLogger(XMLParse.class);
private static String xmlString;
private static Document document;
private static SAXBuilder builder;
private static Element root;
private static LinkedList<SubNode> listNode;
private static StringReader xmlReader;
private static InputSource xmlSource;
private static List<Map> maps = new ArrayList<Map>();
private static Map<String,Map> allElementValue = new HashMap<String, Map>();
private static int domCount=0;
private String value;
public XMLParse() {
}
public XMLParse(String XmlString) {
builder = new SAXBuilder();
root = null;
listNode = new LinkedList();
value = "";
document =new Document();
xmlString = XmlString;
}
public Map getAllValuesFromXmlString() throws Exception{
try {
xmlReader = new StringReader(xmlString);
xmlSource = new InputSource(xmlReader);
document = builder.build(xmlSource);
root = document.getRootElement();
getElements(root);
}catch (Exception var17) {
var17.printStackTrace();
throw var17;
} finally {
listNode.clear();
document = null;
root = null;
// builder = null;
}
return allElementValue;
}
public void getElements (Element element) throws Exception{
try {
domCount++;
List<Element> Children = element.getChildren();
if (Children.size()>0){
for (Element elements : Children){
if(elements.getChildren().size()>0){
getElements(elements);
}else {//确定是最末节点了 开始取末节点的数据
String childName = elements.getName();
String childValue = elements.getText();
Map<String,String> childMap = new HashMap<String, String>(); //用map存储每个最终节点的值
childMap.put(childName,childValue);
allElementValue.put(domCount+elements.getParentElement().getName()+"-"+childName,childMap);
}
}
}
}catch (Exception e){
e.printStackTrace();
throw e;
}
}
public List<Map> getNodeValuesFromXmlStringForPffm(String xmlNodePath) throws Exception{
String[] nodes = xmlNodePath.split("/");
try {
xmlReader = new StringReader(xmlString);
xmlSource = new InputSource(xmlReader);
document = builder.build(xmlSource);
List<Map> maps = new ArrayList<Map>();
for(int i = 1; i < nodes.length; ++i) {
SubNode snode;
if (i >1) {
snode = (SubNode)listNode.getLast();
List<Element> eList = snode.getElement().getChildren(nodes[i]); //这里得到所有Arrival节点 从ArrivalEvent开始取
if (eList != null && eList.size() > 0) {
SubNode s1 = new SubNode((Element)eList.get(0));
listNode.add(s1);
}
if(eList != null && eList.size() > 1 && i==nodes.length-1){ //只有进入的最尾节点的时候再循环去取同名下的一对多的ELEMENT所有子节点
for (Element element : eList){ //开始取出每个ArrivalEven每个字节点
List<Element> elements=element.getChildren();
Map<String,String> childMap = new HashMap<String, String>(); //用map存储AssociatedTransportCargo节点下每个值
for (Element childElements : elements){
if (childElements.getChildren().size()>1){
for (Element grandChildrenEle : (List<Element>)childElements.getChildren()){ //IncludedMasterConsignment重复节点
String childName = grandChildrenEle.getName();
String childValue = grandChildrenEle.getText();
childMap.put(childName,childValue);
}
}
String childName = childElements.getName();
String childValue = childElements.getText();
childMap.put(childName,childValue);
logger.info(childValue);
}
maps.add(childMap);
}
}
} else if (1 == i) {
root = document.getRootElement();
snode = new SubNode(root);
listNode.add(snode);
}
}
return maps;
} catch (Exception var17) {
var17.printStackTrace();
throw var17;
} finally {
listNode.clear();
document = null;
root = null;
// builder = null;
nodes = null;
}
}
/**
* 取一对多关系的节点下的所有子节点的属性名 和 值,//这个方法作为FWB解析使用
* @return 返回重复节点下的所有节点数据
* @throws Exception
*/
public List<Map> getNodeValuesFromXmlString(String xmlNodePath) throws Exception{
String[] nodes = xmlNodePath.split("/");
try {
xmlReader = new StringReader(xmlString);
xmlSource = new InputSource(xmlReader);
document = builder.build(xmlSource);
List<Map> maps = new ArrayList<Map>();
for(int i = 1; i < nodes.length; ++i) {
SubNode snode;
if (i >1) {
snode = (SubNode)listNode.getLast();
List<Element> eList = snode.getElement().getChildren(nodes[i]); //这里等于3的时候得到associatedPary节点 两个,下面应该循环这两个element,取他下面的所有children
if (eList != null && eList.size() > 0) {
SubNode s1 = new SubNode((Element)eList.get(0));
listNode.add(s1);
}
if(eList != null && eList.size() > 1 && i==nodes.length-1){ //只有进入的最尾节点的时候再循环去取同名下的一对多的ELEMENT所有子节点
for (Element element : eList){ //开始取出每个字节点
List<Element> elements=element.getChildren();
Map<String,String> childMap = new HashMap<String, String>(); //用map存储每个值
for (Element childElements : elements){
if (childElements.getChildren().size()>1){
for (Element grandChildrenEle : (List<Element>)childElements.getChildren()){
String childName = grandChildrenEle.getName();
String childValue = grandChildrenEle.getText();
childMap.put(childName,childValue);
}
}
String childName = childElements.getName();
String childValue = childElements.getText();
childMap.put(childName,childValue);
logger.info(childValue);
}
maps.add(childMap);
}
}
} else if (1 == i) {
root = document.getRootElement();
snode = new SubNode(root);
listNode.add(snode);
}
}
return maps;
} catch (Exception var17) {
var17.printStackTrace();
throw var17;
} finally {
listNode.clear();
document = null;
root = null;
// builder = null;
nodes = null;
}
}
/***
* 获取单一节点的值
* @return 单一节点值
* @throws Exception
*/
public final String getNodeValueFromXmlString(String xmlNodePath) throws Exception {
String[] nodes = xmlNodePath.split("/");
try {
xmlReader = new StringReader(xmlString);
xmlSource = new InputSource(xmlReader);
document = builder.build(xmlSource);
for(int i = 1; i < nodes.length; ++i) {
SubNode snode;
if (i > 1) {
snode = (SubNode)listNode.getLast();
List<Element> eList = snode.getElement().getChildren(nodes[i]);
if (eList != null && eList.size() > 0) {
SubNode s1 = new SubNode((Element)eList.get(0));
listNode.add(s1);
}
} else if (1 == i) {
root = document.getRootElement();
snode = new SubNode(root);
listNode.add(snode);
}
}
SubNode n = (SubNode)listNode.getLast();
value = n.getElement().getText();
n = null;
return value;
} catch (Exception var17) {
var17.printStackTrace();
throw var17;
} finally {
listNode.clear();
document = null;
root = null;
// builder = null;
nodes = null;
}
}
public static final String getNodeAttribute(String xmlFile, String xmlNodePath, String attributeName, String defaultValue) {
String[] nodes = xmlNodePath.split("/");
new Document();
SAXBuilder builder = new SAXBuilder();
Element root = null;
LinkedList<SubNode> listNode = new LinkedList();
String value = "";
Document document;
try {
document = builder.build(xmlFile);
for(int i = 1; i < nodes.length; ++i) {
SubNode snode;
if (i > 1) {
snode = (SubNode)listNode.getLast();
List<Element> eList = snode.getElement().getChildren(nodes[i]);
if (eList != null && eList.size() > 0) {
SubNode s1 = new SubNode((Element)eList.get(0));
listNode.add(s1);
}
} else if (1 == i) {
root = document.getRootElement();
snode = new SubNode(root);
listNode.add(snode);
}
}
SubNode n = (SubNode)listNode.getLast();
value = n.getElement().getAttributeValue(attributeName, defaultValue);
n = null;
} catch (JDOMException var18) {
var18.printStackTrace();
} catch (IOException var19) {
var19.printStackTrace();
} finally {
listNode.clear();
document = null;
root = null;
builder = null;
nodes = null;
}
System.out.println("key=" + xmlNodePath + " node attrivte value=" + value);
return value;
}
}
work_home=`pwd`
param="-Xms512m -Xmx1024m -Xmn256m -Xss512k -XX:PermSize=256m -XX:MaxPermSize=256m"
java $param -cp .:lib/* com.tianbo.Main & echo $! > process.pid &
... ...
#!/bin/bash
echo " Current module will shutdown ..."
pid=`cat process.pid | awk 'echo $1'`
echo "pid:$pid"
kill -9 $pid
rm -f process.pid
... ...