mirror of
https://gitee.com/dromara/sa-token.git
synced 2025-04-05 17:37:53 +08:00
Merge branch 'dev' of https://gitee.com/dromara/sa-token into dev
This commit is contained in:
commit
18757a23d2
@ -59,10 +59,9 @@ public class SaQuickBean implements WebMvcConfigurer {
|
||||
@Order(SaTokenConsts.ASSEMBLY_ORDER - 1)
|
||||
public SaServletFilter getSaServletFilter() {
|
||||
return new SaServletFilter().
|
||||
|
||||
// 拦截路由 & 放行路由
|
||||
addInclude("/**").addExclude("/favicon.ico", "/saLogin", "/doLogin", "/sa-res/**").
|
||||
|
||||
addInclude(SaQuickManager.getConfig().getInclude().split(","))
|
||||
.addExclude("/favicon.ico", "/saLogin", "/doLogin", "/sa-res/**").
|
||||
// 认证函数: 每次请求执行
|
||||
setAuth(r -> {
|
||||
// System.out.println("---------- 进入sa-token全局认证 -----------");
|
||||
|
@ -26,7 +26,9 @@ public class SaQuickConfig {
|
||||
/** 是否显示底部版权信息 */
|
||||
private Boolean copr = true;
|
||||
|
||||
|
||||
/** 配置拦截的路径,逗号分隔 */
|
||||
private String include = "/**";
|
||||
|
||||
public Boolean getAuth() {
|
||||
return auth;
|
||||
}
|
||||
@ -75,16 +77,23 @@ public class SaQuickConfig {
|
||||
this.copr = copr;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "SaQuickConfig [auth=" + auth + ", name=" + name + ", pwd=" + pwd + ", auto=" + auto + ", title=" + title
|
||||
+ ", copr=" + copr + "]";
|
||||
public String getInclude() {
|
||||
return include;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public void setInclude(String include) {
|
||||
this.include = include;
|
||||
}
|
||||
@Override
|
||||
public String toString() {
|
||||
return "SaQuickConfig{" +
|
||||
"auth=" + auth +
|
||||
", name='" + name + '\'' +
|
||||
", pwd='" + pwd + '\'' +
|
||||
", auto=" + auto +
|
||||
", title='" + title + '\'' +
|
||||
", copr=" + copr +
|
||||
", include='" + include + '\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user