|
|
@@ -54,10 +54,14 @@ public class TsfAflinkInterceptor extends HandlerInterceptorAdapter {
|
|
|
queryString = "?" + queryString;
|
|
|
}
|
|
|
|
|
|
- InflowHst inflow = new InflowHst();
|
|
|
- inflow.setAfLinkCd(afLinkCd);
|
|
|
- inflow.setPageUrl(request.getRequestURL() + queryString);
|
|
|
- commonService.createInflowHistory(inflow);
|
|
|
+ try {
|
|
|
+ InflowHst inflow = new InflowHst();
|
|
|
+ inflow.setAfLinkCd(afLinkCd);
|
|
|
+ inflow.setPageUrl(request.getRequestURL() + queryString);
|
|
|
+ commonService.createInflowHistory(inflow);
|
|
|
+ } catch (Exception e) {
|
|
|
+ // Do nothing
|
|
|
+ }
|
|
|
|
|
|
return super.preHandle(request, response, handler);
|
|
|
}
|