Commit 731be8bd authored by hezhen's avatar hezhen

123

parent e775b875
...@@ -38,7 +38,7 @@ public class WebConfiguration implements WebMvcConfigurer { ...@@ -38,7 +38,7 @@ public class WebConfiguration implements WebMvcConfigurer {
private ArrayList<String> getIncludePathPatterns() { private ArrayList<String> getIncludePathPatterns() {
ArrayList<String> list = new ArrayList<>(); ArrayList<String> list = new ArrayList<>();
String[] urls = { String[] urls = {
"/summit/activity/**" "/activity/**"
}; };
Collections.addAll(list, urls); Collections.addAll(list, urls);
return list; return list;
......
...@@ -45,9 +45,9 @@ public class WeChatH5LoginInterceoptor extends HandlerInterceptorAdapter { ...@@ -45,9 +45,9 @@ public class WeChatH5LoginInterceoptor extends HandlerInterceptorAdapter {
String curr_domain = request.getServerName(); String curr_domain = request.getServerName();
HttpSession session = request.getSession(); HttpSession session = request.getSession();
log.error("curr_domain:" + curr_domain); log.info("curr_domain:" + curr_domain);
log.error("address:" + request.getRequestURL().toString()); log.info("address:" + request.getRequestURL().toString());
log.error("params:" + request.getQueryString()); log.info("params:" + request.getQueryString());
boolean isWx = UserAgentUtil.isWexinBrowser(request); boolean isWx = UserAgentUtil.isWexinBrowser(request);
if (isWx) { 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