SpringBoot+SpringCloud微服务
SpringBoot2 微服务架构课程
Jabony
只要还有明天,今天就永远是起跑点
展开
-
【Redis】MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on di
MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk.转自:https://www.cnblogs.com/anny-1980/p/4582674.html今天运行Redis时发生错误,错误信息如下:(error) MISCONF Redis is ...转载 2019-04-15 14:35:27 · 592 阅读 · 0 评论 -
idea配置echache.xml报错Cannot resolve file 'ehcache.xsd'
转自:https://www.cnblogs.com/liaojie970/p/8270570.html解决方法:打开settings->languages&frameworks->schemas and dtds ,添加地址http://ehcache.org/ehcache.xsd然后将ehcache.xml 这里做修改...转载 2019-04-17 09:19:56 · 484 阅读 · 0 评论 -
【Spring Security】 There is no PasswordEncoder mapped for the id "null"
使用springboot,权限管理使用spring security,使用内存用户验证,但无响应报错:java.lang.IllegalArgumentException: There is no PasswordEncoder mapped for the id "null"解决方法:spring security 5.X版本,此版本需要提供一个PasswordEncorder的实例,否则...原创 2019-06-06 17:50:47 · 487 阅读 · 3 评论 -
【SpringBoot2】实现自定义404页面渲染
自定义注意:1、404.html一定要建在template/static下面,否则无效。2、new ErrorPage可以重定向具体的html也可以重定向请求地址,如/404,那就需要添加/404的Controller效果图实现1@Configurationpublic class ErrorConfigurar implements ErrorPageRegistrar { ...原创 2019-06-05 18:00:25 · 4612 阅读 · 4 评论 -
【Springboot】关于SpringbootJPA分页 PageRequest过时的办法
【Springboot】关于SpringbootJPA分页 PageRequest过时的办法看了网上很多博客,都是在用 new PageRequest的方法创建Pageable对象。可是估计很多同学写了之后才发现原来这个方法作者已经标记为过时了;替代的方法是不要new PageRequest,而是直接用 PageRequest.of这个方法 根据你的需求选择入参;下面贴出对比@Overri...原创 2019-05-28 13:47:44 · 2579 阅读 · 0 评论 -
【Mysql】Wed May 15 19:02:20 CST 2019 WARN: Establishing SSL connection without server's identity veri
报错:今天再做mybatis-generator,逆向工程,连接mysql数据库通过mybatis-generator插件自动生成dao 、mapper报了红色警告Wed May 15 19:02:20 CST 2019 WARN: Establishing SSL connection without server's identity verification is not reco...原创 2019-05-15 19:08:46 · 13711 阅读 · 7 评论 -
【SpringBoot&Redis】io.lettuce.core.RedisCommandTimeoutException: Command timed out
错误原因:连接超时时间设置的过于短暂(我这边设置成了0),修改为5000左右即可# REDIS (RedisProperties)# Redis数据库索引(默认为0)spring.redis.database=0# Redis服务器地址spring.redis.host=192.168.30.103# Redis服务器连接端口spring.redis.port=6379# Redi...转载 2019-05-13 15:49:31 · 2843 阅读 · 0 评论 -
【SpringBoot】springboot中各个版本的redis配置问题
今天在springboot中使用数据库,springboot版本为2.0.2.RELEASE,通过pom引入jar包,配置文件application.properties中的redis配置文件报错,提示例如deprecated configuration property 'spring.redis.pool.max-active',猜想应该是版本不对,发现springboot在1.4前后集成re...转载 2019-05-13 15:47:38 · 1556 阅读 · 0 评论 -
【SpringBoot2】多数据源java.lang.IllegalArgumentException: jdbcUrl is required with driverClassName.
原始配置:spring.datasource.primary.url=jdbc:mysql://localhost:3306/test?setUnicode=true&characterEncoding=utf8&serverTimezone=UTCspring.datasource.primary.username=rootspring.datasource.prima...原创 2019-05-13 15:47:05 · 1580 阅读 · 0 评论 -
【Maven有图有真相】解决Intellij idea下maven下载插件慢问题
如下图操作选择打开或创建settings.xml配置如下<?xml version="1.0" encoding="UTF-8"?><settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instan...原创 2019-05-10 17:11:30 · 2324 阅读 · 0 评论 -
Springboot项目全局异常统一处理
最近在做项目时需要对异常进行全局统一处理,主要是一些分类入库以及记录日志等,因为项目是基于Springboot的,所以去网络上找了一些博客文档,然后再结合项目本身的一些特殊需求做了些许改造,现在记录下来便于以后查看。在网络上找到关于Springboot全局异常统一处理的文档博客主要是两种方案:1、基于@ControllerAdvice注解的Controller层的全局异常统一处理以下是...转载 2019-05-09 18:56:10 · 1512 阅读 · 0 评论 -
【swagger2】"message": "Failed to convert value of type 'java.lang.String' to required type 'java.lang
异常http://localhost:8000/users/{id}"message": "Failed to convert value of type 'java.lang.String' to required type 'java.lang.Long'; nested exception is java.lang.NumberFormatException: For input ...原创 2019-05-09 15:29:50 · 84018 阅读 · 4 评论 -
【Springboot】spring-boot-starter-redis包报错 :unknown
springboot集成redis时,引入spring-boot-starter-redis包报错,maven找不到这个资源.如下图:我的项目中,spring boot是 用的2.0.4版本.spring-boot-starter-redis在springboot 1.4.7版本后,改为了spring-boot-starter-data-redis,所以如果想集成redis,...转载 2019-04-17 17:47:34 · 7279 阅读 · 2 评论 -
【SpringBoot】Failed to configure a DataSource
在用spring cloud的时候,先创建了一个parent项目,然后分别加入eureka-server模块、短信模块,运行正常。最后再加入支付模块(需整合myBatis、mySql)之后,eureka-server模块和短信模块报错:Description:Failed to configure a DataSource: 'url' attribute is not specifie...转载 2019-05-09 14:24:48 · 800 阅读 · 0 评论 -
【已解决】MySQL报错The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents .....
参考博文:https://blog.csdn.net/qq_37630354/article/details/82814330参考博文:https://blog.csdn.net/lovequanquqn/article/details/84105311感谢博主解决遇到的问题。1.前言今天在用SpringBoot2.0+MyBatis+MySQL搭建项目开发环境的时候启动项目发现报了...原创 2019-04-12 17:20:30 · 2135 阅读 · 0 评论