sa-token/sa-token-demo/sa-token-demo-solon/src/main/java/com/pj/SaTokenDemoApp.java
2021-05-30 21:24:04 +08:00

17 lines
352 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.pj;
import cn.dev33.satoken.SaManager;
import org.noear.solon.Solon;
/**
* sa-token整合 solon 示例
* @author noear
*
*/
public class SaTokenDemoApp {
public static void main(String[] args) {
Solon.start(SaTokenDemoApp.class, args);
System.out.println("\n启动成功sa-token配置如下" + SaManager.getConfig());
}
}