| | |
| | | package com.ruoyi.framework.config.properties; |
| | | |
| | | import cn.dev33.satoken.annotation.SaIgnore; |
| | | import cn.dev33.satoken.interceptor.SaInterceptor; |
| | | import cn.hutool.core.util.ReUtil; |
| | | import com.ruoyi.common.annotation.Anonymous; |
| | | import com.ruoyi.common.utils.spring.SpringUtils; |
| | |
| | | import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping; |
| | | import org.springframework.web.util.pattern.PathPattern; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.*; |
| | | import java.util.regex.Pattern; |
| | | |
| | |
| | | * 设置注解允许匿名访问的url |
| | | * |
| | | * @author Lion Li |
| | | * @deprecated 将在后续版本使用Sa-Token注解 {@link SaIgnore} 代替, |
| | | * 底层过滤方法详见 {@link SaInterceptor#preHandle(HttpServletRequest, HttpServletResponse, Object)} |
| | | */ |
| | | @Deprecated |
| | | @Lazy |
| | | @Component |
| | | public class ExcludeUrlProperties implements InitializingBean { |