常用

shiro

anon 无需认证就可以访问
authc 必须认证了才可以访问
user 必须拥有记住我功能才能访问
perms 拥有对某个资源的权限才可以访问
role 拥有某个角色权限才可以访问

springboot

配置数据库连接

mybatis:
  mapper-locations: classpath:mapper/*.xml
  type-aliases-package: com.example.shiro.pojo
spring:
  datasource:
    url: jdbc:mysql://localhost:3306/myuser?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT
    username: root
    password: yfy57320
    type: com.alibaba.druid.pool.DruidDataSource
    driver-class-name: com.mysql.cj.jdbc.Driver

前端页面



swagger


            io.springfox
            springfox-swagger2
            2.9.2
        
        
            io.springfox
            springfox-swagger-ui
            2.9.2
        


//配置swagger
@Configuration
@EnableSwagger2
public class swaggerConfig {
}

你可能感兴趣的:(常用)