top.lingkang.sessioncore.base.IdGenerate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of final-session-core Show documentation
Show all versions of final-session-core Show documentation
final-session 一个轻量级分布式session框架
package top.lingkang.sessioncore.base;
import javax.servlet.http.HttpServletRequest;
/**
* @author lingkang
* Created by 2022/1/26
* 自定义id生成,默认生成类 FinalIdGenerate
*/
public interface IdGenerate {
String generateId(HttpServletRequest request);
}