优化文档

This commit is contained in:
click33
2021-10-11 23:44:34 +08:00
parent 8a72c69474
commit 17235e0d2c
10 changed files with 45 additions and 19 deletions

View File

@@ -49,7 +49,7 @@ public SaResult test3() {
public SaServletFilter getSaServletFilter() {
return new SaServletFilter()
.addInclude("/**").addExclude("/favicon.ico")
.setAuth(r -> {
.setAuth(obj -> {
SaRouter.match("/test/**", () -> SaBasicUtil.check("sa:123456"));
});
}