From 4a95381c59ec3abdd468ccce8eff0fcb00f1bfdb Mon Sep 17 00:00:00 2001 From: zhangxin10 Date: Wed, 13 Jan 2016 10:03:17 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8DTraceId=E5=B8=A6=E5=A4=9A?= =?UTF-8?q?=E4=B8=AA=E7=82=B9=E6=97=A0=E6=B3=95=E5=B1=95=E7=A4=BA=E8=B0=83?= =?UTF-8?q?=E7=94=A8=E9=93=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/ai/cloud/controller/HelloSkyWalkingUICtl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skywalking-webui/src/main/java/com/ai/cloud/controller/HelloSkyWalkingUICtl.java b/skywalking-webui/src/main/java/com/ai/cloud/controller/HelloSkyWalkingUICtl.java index 46cbc2c7d..ad75f1019 100644 --- a/skywalking-webui/src/main/java/com/ai/cloud/controller/HelloSkyWalkingUICtl.java +++ b/skywalking-webui/src/main/java/com/ai/cloud/controller/HelloSkyWalkingUICtl.java @@ -82,7 +82,7 @@ public class HelloSkyWalkingUICtl { * @return * @throws Exception */ - @RequestMapping(value = "/{traceId}") + @RequestMapping(value = "/{traceId:.+}") public String showIndexPageWithTraceId(ModelMap root, @PathVariable("traceId") String traceId) throws Exception { showIndexPage(root, null); root.put("traceId", traceId); @@ -100,7 +100,7 @@ public class HelloSkyWalkingUICtl { * @return * @throws Exception */ - @RequestMapping(value = "/showTraceLog/{traceId}") + @RequestMapping(value = "/showTraceLog/{traceId:.+}") public String showTraceLog(ModelMap root, @PathVariable("traceId") String traceId) throws Exception { // traceId = "bcb759bc12db474aa54bc4bea605cb81123"; Map traceLogMap = traceLogSer.queryLogByTraceId(traceId);