发布时间:2021-06-11 10:18:41
1. 配置密码,找到 redis.windows.conf 配置文件# Require clients to issue AUTH before processing any other# commands. This might be useful in environments in which you do not trust# others with access to the host running redis-server.## This should stay commented out for back.........【阅读全文】
发布时间:2021-06-10 08:27:45
先来一段简单的代码,如下:当我们流量请求到此接口执行业务逻辑的时候,若服务端此时执行关机 (kill),spring boot 默认情况会直接关闭容器(tomcat 等),导致此业务逻辑执行失败。在一些业务场景下:会出现数据不一致的情况,事务逻辑不会回滚。 当使用 server.shutdown=graceful启用时,在 we.........【阅读全文】
发布时间:2021-06-09 12:15:05
一、 运行端点变更Secure info endpoint(安全的 info 端点)默认情况下/info端点不再对 web 公开。此外,如果引用了 Spring Security,则默认情况下端点需要经过身份验证才能访问。记录停机日志通过以下属性我们可以在 JVM 退出时候,记录资源释放日志等。新增 Quartz 的 Actuator EndpointActuator 中新增.........【阅读全文】
发布时间:2021-06-08 11:44:08
问题原因,新版本的gateway 取消了allowedOrigins, 对应的变更为 allowedOriginPatterns#--------gateway配置--------#使用服务发现路由spring.cloud.gateway.discovery.locator.enabled=true#服务路由名小写spring.cloud.gateway.discovery.locator.lower-case-service-id=true#跨域配置(java www&nb.........【阅读全文】
发布时间:2021-06-07 11:40:30
Navicat连接MySQL Server8.0版本时出现Client does not support authentication protocol requested by server;解决如下:命令如下:1、use mysql;2、alter user 'root'@'localhost' identified with mysql_native_password by 'root';3、flush privileges;4、ww fhadmin org;.........【阅读全文】