From 34a716e48e49743083953113bfc2e8011d52444f Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期一, 15 九月 2025 19:08:05 +0800
Subject: [PATCH] 日志修改
---
ruoyi-admin/src/main/java/com/ruoyi/web/controller/common/CommonController.java | 87 +++++++++++++++++++++++++++++++++++--------
1 files changed, 71 insertions(+), 16 deletions(-)
diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/common/CommonController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/common/CommonController.java
index c4ac6c3..d361a51 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/common/CommonController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/common/CommonController.java
@@ -15,13 +15,18 @@
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.http.MediaType;
+import org.springframework.mock.web.MockMultipartFile;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;
+import javax.management.*;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
+import java.io.File;
+import java.lang.management.ManagementFactory;
+import java.util.Set;
/**
* 閫氱敤璇锋眰澶勭悊
@@ -68,17 +73,37 @@
*/
@PostMapping("/common/upload")
public AjaxResult uploadFile(MultipartFile file) throws Exception {
- int tomcatPort = getTomcatPort();
+
try {
// 涓婁紶鏂囦欢璺緞
String filePath = RuoYiConfig.getUploadPath();
+
+ //鍒ゆ柇鏂囦欢鏄惁瀛樺湪
+ String filename = file.getOriginalFilename().trim();
+ String felinamePath = FileUploadUtils.extractFilename(file);
+// String pathFileName = FileUploadUtils.getPathFileName(filePath, s);
+ File file1 = new File(filePath + "/" + felinamePath);
+ boolean exists = file1.exists();
+ if (exists) {
+ int i = filename.lastIndexOf(".");
+ String startStr = filename.substring(0, i);
+ String endStr = filename.substring(i, filename.length());
+
+ String newFilename = startStr + System.currentTimeMillis() + endStr; // your new filename
+ String contentType = file.getContentType();
+ byte[] bytes = file.getBytes();
+ file = new MockMultipartFile(newFilename, newFilename, contentType, bytes);
+ }
+
// 涓婁紶骞惰繑鍥炴柊鏂囦欢鍚嶇О
String fileName = FileUploadUtils.upload(filePath, file);
-
- //鍥犱负serverConfig.getUrl()鎷垮埌鐨勭鍙e彿锛屼笉鏄痶omcat鐨勭鍙e彿锛岃繖閲岄渶瑕佽浆涓�涓�
String url1 = serverConfig.getUrl();
- url1 = url1.substring(0, url1.lastIndexOf(":")) + ":" + tomcatPort;
- log.info("url1鐨勫��:{} ,port鐨勫��:{}", url1, tomcatPort);
+ log.info("url1鐨勫�紀ld :{}", url1);
+ if (url1.contains("8032")) {
+ //杩欓噷鐨�8032涓嶆槸tomcat鐨勶紝鎵�浠ヨ杞垚tomcat鐨�
+ url1 = url1.replace("8032", "8032/prod-api");
+ }
+ log.info("url1鐨勫�糿ew :{}", url1);
String url = url1 + fileName;
AjaxResult ajax = AjaxResult.success();
ajax.put("fileName", fileName);
@@ -89,16 +114,27 @@
}
}
- private static int getTomcatPort() {
- int port = 0;
- Tomcat tomcat = new Tomcat();
- Connector connector = tomcat.getConnector();
- if (connector != null) {
- AbstractProtocol protocol = (AbstractProtocol) connector.getProtocolHandler();
- port = protocol.getPort();
- }
- return port;
- }
+
+// private static void parseUTF(int[] bits) {
+// int index = 0;//杩欎釜鎸囬拡鎸囧悜姣忎竴琛屽惊鐜椂鍒椾笅鏍囩殑浣嶇疆锛屼笅涓�琛屽紑濮嬫椂閲嶆柊缃綅0
+// int count = 0;
+// ;//杩欎釜鍙橀噺璁板綍姣忎釜UTF-8瀛楃鐨勫瓧鑺傛暟锛岃嚦灏�1瀛楄妭
+// for (int j = ; j < bits.length; ) {
+// //寰幆姣忎竴琛屾暟缁勬暟鎹�-浠庡ご鍘昏--鍏堣杩欎釜瀛楃鏄嚑涓瓧鑺傜粍鎴愮殑
+// // 鐒跺悗鎸塽tf-8鐨勭紪鐮佹牸寮忕粍鍚堝瓧绗︿覆锛岃浆鎹负瀛楃鍗冲彲
+// if (bits[j] == 1) {
+// count++;
+// index++;
+// } else {
+// index++;//杩欎竴浣嶆槸1鍚庨潰璺熺殑閭d竴涓猳
+// //涓嶄负1锛屽垯璇存槑宸茬粡瑙f瀽瀹屽瓧鑺傛暟锛宑ount閲岄潰瀛樼殑濡傛灉鏄疈琛ㄧず鏄崟瀛楄妭鏁版嵁
+// //濡傛灉涓嶆槸o鍒欒〃绀烘槸澶氬瓧鑺傛暟鎹�
+// String str = "";
+// }
+// }
+// }
+//
+//}
/**
* 鏈湴璧勬簮閫氱敤涓嬭浇
@@ -122,4 +158,23 @@
log.error("涓嬭浇鏂囦欢澶辫触", e);
}
}
-}
+
+
+ public int getTomcatPort() {
+ MBeanServer beanServer = ManagementFactory.getPlatformMBeanServer();
+ try {
+ QueryExp protocol = Query.match(Query.attr("protocol"), Query.value("HTTP/1.1"));
+ ObjectName name = new ObjectName("*:type=Connector,*");
+ Set<ObjectName> objectNames = beanServer.queryNames(name, protocol);
+ for (ObjectName objectName : objectNames) {
+ String catalina = objectName.getDomain();
+ if ("Catalina".equals(catalina)) {
+ return Integer.parseInt(objectName.getKeyProperty("port"));
+ }
+ }
+ } catch (MalformedObjectNameException e) {
+ e.printStackTrace();
+ }
+ return 0;
+ }
+}
\ No newline at end of file
--
Gitblit v1.9.3