com.heanbian.boot.autoconfigure.jwt.JwtAutoConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of heanbian-spring-boot-autoconfigure Show documentation
Show all versions of heanbian-spring-boot-autoconfigure Show documentation
Heanbian spring boot autoconfigure component.
package com.heanbian.boot.autoconfigure.jwt;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import com.heanbian.block.jwt.JwtTemplate;
@Configuration
public class JwtAutoConfiguration {
@Bean
public JwtTemplate jwtTemplate() {
return new JwtTemplate();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy