如果无法获取到消息,则不记录足迹,不再抛出异常
This commit is contained in:
parent
c0c530adad
commit
0ae1ae5df4
@ -62,7 +62,12 @@ public class PageViewInterceptor {
|
||||
break;
|
||||
}
|
||||
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");
|
||||
break;
|
||||
default:
|
||||
|
Loading…
x
Reference in New Issue
Block a user