com.github.houbb.current.user.config.CurrentUserSpringbootAutoConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of current-user Show documentation
Show all versions of current-user Show documentation
The current-user tool for java.
package com.github.houbb.current.user.config;
import com.github.houbb.current.user.annotation.EnableCurrentUser;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.context.annotation.Configuration;
/**
* 自动配置
* @author binbin.hou
* @since 0.0.3
*/
@Configuration
@ConditionalOnClass(EnableCurrentUser.class)
@EnableCurrentUser
public class CurrentUserSpringbootAutoConfig {
}