Commit 731be8bd authored by hezhen's avatar hezhen

123

parent e775b875
......@@ -38,7 +38,7 @@ public class WebConfiguration implements WebMvcConfigurer {
private ArrayList<String> getIncludePathPatterns() {
ArrayList<String> list = new ArrayList<>();
String[] urls = {
"/summit/activity/**"
"/activity/**"
};
Collections.addAll(list, urls);
return list;
......
......@@ -45,9 +45,9 @@ public class WeChatH5LoginInterceoptor extends HandlerInterceptorAdapter {
String curr_domain = request.getServerName();
HttpSession session = request.getSession();
log.error("curr_domain:" + curr_domain);
log.error("address:" + request.getRequestURL().toString());
log.error("params:" + request.getQueryString());
log.info("curr_domain:" + curr_domain);
log.info("address:" + request.getRequestURL().toString());
log.info("params:" + request.getQueryString());
boolean isWx = UserAgentUtil.isWexinBrowser(request);
if (isWx) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment