com.github.taccisum.shiro.web.autoconfigure.stateless.ShiroAnnotationProcessorAutoConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shiro-starter Show documentation
Show all versions of shiro-starter Show documentation
another spring boot starter for shiro
package com.github.taccisum.shiro.web.autoconfigure.stateless;
import com.github.taccisum.shiro.web.autoconfigure.AbstractShiroAnnotationProcessorAutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Configuration;
/**
* @author tac - [email protected]
* @since 2018/9/3
*/
@SuppressWarnings("SpringFacetCodeInspection")
@Configuration
@ConditionalOnProperty(name = "shiro.web.mode", havingValue = "STATELESS")
public class ShiroAnnotationProcessorAutoConfiguration extends AbstractShiroAnnotationProcessorAutoConfiguration {
}