From 32dff3639292afeaae143c132dc46ee91c466c67 Mon Sep 17 00:00:00 2001
From: ludc
Date: 星期三, 26 六月 2024 11:29:03 +0800
Subject: [PATCH] 内置的Tomcat高版本,请求url上被拦截的特殊字符处理
---
Source/Service/BOFactory/src/com/vci/server/bof/server/create/BatchCreateBOLO.java | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/Source/Service/BOFactory/src/com/vci/server/bof/server/create/BatchCreateBOLO.java b/Source/Service/BOFactory/src/com/vci/server/bof/server/create/BatchCreateBOLO.java
index 18a5c98..1acfde5 100644
--- a/Source/Service/BOFactory/src/com/vci/server/bof/server/create/BatchCreateBOLO.java
+++ b/Source/Service/BOFactory/src/com/vci/server/bof/server/create/BatchCreateBOLO.java
@@ -5,6 +5,7 @@
import com.vci.common.log.ServerWithLog4j;
import com.vci.corba.common.data.VCIInvocationInfo;
import com.vci.server.base.persistence.dao.HibernateSessionFactory;
+import com.vci.server.base.utility.LogRecordUtil;
import com.vci.server.bof.server.ServiceFacadeExecuteHelper;
import com.vci.server.bof.service.BOFactoryServices;
import com.vci.corba.common.VCIError;
@@ -32,7 +33,7 @@
if(info!=null){
ip = info.clientIPInfo == null||"".equals(info.clientIPInfo) ?"127.0.0.1":info.clientIPInfo;
}
- batchRecordLog(params.getBos(), ip, "鍒涘缓");
+ LogRecordUtil.batchWriteLog(params.getBos(), "鍒涘缓");
return true;
} catch (VCIError e) {
throw this.getLocalString(e.code, e);
--
Gitblit v1.9.3