package com.kidgrow.jwt.server;
|
|
import com.kidgrow.jwt.server.configuration.AuthServerConfiguration;
|
import org.springframework.context.annotation.Import;
|
|
import java.lang.annotation.*;
|
|
/**
|
* 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
|
*
|
* @Description: 启用 认证服务 的服务端配置<br>
|
* @Project: <br>
|
* @CreateDate: Created in 2020/2/11 14:00 <br>
|
* @Author: <a href="4345453@kidgrow.com">liuke</a>
|
*/
|
@Target(ElementType.TYPE)
|
@Retention(RetentionPolicy.RUNTIME)
|
@Import(AuthServerConfiguration.class)
|
@Documented
|
@Inherited
|
public @interface EnableAuthServer {
|
}
|