欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

springboot + security + mybatis 权限模块

程序员文章站 2022-05-10 11:06:05
...

参考:
https://blog.csdn.net/u012373815/article/details/54632176

博主写的几个拓展spring-boot的例子看起来不错,刚开始实践了第一个。
说说几个坑:

  1. 打开页面访问不到静态资源。
    ——在config/WebSecurityConfig.class文件中重写的configure方法中增加一行。.antMatchers(“/css/**”).permitAll()//added

  2. jdbc驱动报错:Loading class com.mysql.jdbc.Driver'. This is deprecated. The new driver class iscom.mysql.cj.jdbc.Driver’. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.
    ——看了下pom.xml文件中,

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>6.0.5</version>
        </dependency>

这个版本的driver名称应该为:com.mysql.cj.jdbc.Driver 而不是 com.mysql.jdbc.Driver

  1. 报错:com.mysql.cj.core.exceptions.InvalidConnectionAttributeException: The server time zone value ‘?й????
    ——&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
相关标签: 权限