摘要:
解决方法就是 选择正确的module和启动类进行启动即可;因为一般这个module会有重复模块;原有我也不知道 阅读全文
摘要:
第一种情况是:JDK版本不对,需要确认是否一致 第二种情况是:确认一下此菜单项是否启用Enabled 第三种情况:确认包目录是否标识为Java源目录 第四种情况:如果使用的是Gradle,确认以下配置是否包含在build.gradle中 bootJar { enabled = true } jar 阅读全文
摘要:
这里你会发现在值的前后有2个\u开头的控制字符;转换网址:http://www.jsons.cn/utf8/ 解释:https://blog.csdn.net/haiyan1111/article/details/115085929 阅读全文
摘要:
# 写法1 指定 年月 的共有多少日 select DATEDIFF(DATE_ADD(CONCAT( 2020, '-', '03','-','01'),INTERVAL 1 MONTH),CONCAT( 2020, '-','03','-','01'))或者 select DAY(LAST_DA 阅读全文
摘要:
异常内容: org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error updating database. C 阅读全文
摘要:
异常内容:Authentication token of type [class org.apache.shiro.authc.UsernamePasswordToken] could not be authenticated by any configured realms. Please ens 阅读全文
摘要:
1.如果启动项目不加载application.yml配置文件,那么请确认下是否应用了Resources为项目资源文件夹 2.如果项目起初是可以正常使用的,突然不知道改了什么,然后进行启动项目的时候不加载application.yml配置文件了,那么请最终必杀技 idea关闭项目,打开项目所在目录,将 阅读全文
摘要:
配置服务端别忘了添加以下2个依赖 implementation("org.springframework.cloud:spring-cloud-config-server")implementation group: 'org.springframework.cloud', name: 'sprin 阅读全文
摘要:
报错信息:Expected '$(student - name)' to be an inline constant of type java.lang.String in @org.springframework.beans.factory.annotation.Value 这样使用会报错,原因是 阅读全文
摘要:
Shiro会话管理:https://shiro.apache.org/session-management.html#SessionManagement-CustomSessionIDs Redis主页:https://redis.io/ 关键的类为: SimpleSessionSessionDAO 阅读全文