LoopAuth is a low-intrusive, streamlined, lightweight, fine-grained Java web permission management framework.
Currently includes the following functions:
- Annotation authentication
- code authentication
- Login function
- Login with/without status
- Redis login business storage separation
Project related links
-Gitee
– GitHub
– Official documentation
In the early stage of open source project, I hope everyone can star more
Abandon the cumbersome permission framework configuration, even without configurationyml
easy to start
// 你可以这样
@GetMapping("/islogin")
public String isLogin(){
// 验证是否登录
LoopAuthFaceImpl.isLogin();
return "已经登录";
}
// 也可以这样
// 登录才可访问
@LoopAutoCheckLogin
@GetMapping("/islogin")
public String isLogin(){
return "已经登录";
}
#LoopAuth #Homepage #Documentation #Downloads #Java #Web #Permission #Management #Framework #News Fast Delivery