如果无法获取到消息,则不记录足迹,不再抛出异常

This commit is contained in:
Chopper 2021-12-22 12:27:46 +08:00
parent c0c530adad
commit 0ae1ae5df4

View File

@ -62,7 +62,12 @@ public class PageViewInterceptor {
break; break;
} }
case STORE: case STORE:
Map<String, String> map = spelFormat(point); Map<String, String> map = null;
try {
map = spelFormat(point);
} catch (Exception e) {
return;
}
storeId = map.get("id"); storeId = map.get("id");
break; break;
default: default: