Commit 6f8fcb86 authored by 陈炯舟's avatar 陈炯舟

Merge branch 'dev-8.9.0' into 'master'

🎨 log

See merge request !19
parents 2abb498a 7b140065
......@@ -19,7 +19,6 @@ import java.util.Set;
* @contact chenyan@afanticar.com
* @since 2023/4/26/026
*/
@Slf4j
@Setter
@Component
......@@ -31,6 +30,7 @@ public class TokenInterceptor implements HandlerInterceptor {
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
String requestUri = request.getRequestURI();
log.info("请求uri" + requestUri);
if (uris.contains(requestUri)) {
return true;
}
......
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