问答详情
源自:3-3 IniRealm讲解

Springboot 使用shiro

Springboot 使用shiro

提问者:leozj 2018-10-15 11:20

个回答

  • 小草1434
    2019-01-11 14:53:58

    在spring boot中使用shiro,可以直接依赖 spring boot的shiro启动器依赖,然后主要就是配置文件修改【yml或者properties】


    <dependency>
        <groupId>org.apache.shiro</groupId>
        <artifactId>shiro-spring-boot-starter</artifactId>
        <version>1.4.0</version>
    </dependency>

    具体可以参考以下链接:https://www.cnblogs.com/ll409546297/p/7815409.html

  • 慕无忌6398165
    2018-11-08 23:26:48

    就跟spring 使用一样,把配置文件*.xml ,该springboot 中的注解应该是这样