spring-cloud-learning
spring-cloud-learning copied to clipboard
:cloud:适合刚接触微服务架构的初学者了解和学习微服务,主要集成了注册中心、服务网关、配置中心、熔断机制、应用监控。
Bumps [fastjson](https://github.com/alibaba/fastjson) from 1.2.39 to 1.2.83. Release notes Sourced from fastjson's releases. FASTJSON 1.2.83版本发布(安全修复) 这是一个安全修复版本,修复最近收到在特定场景下可以绕过autoType关闭限制的漏洞,建议fastjson用户尽快采取安全措施保障系统安全。 安全修复方案 :https://github.com/alibaba/fastjson/wiki/security_update_20220523 Issues 安全加固 修复JDK17下setAccessible报错的问题 #4077 下载 https://repo1.maven.org/maven2/com/alibaba/fastjson/1.2.83/ 文档 https://github.com/alibaba/fastjson/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98 源码 https://github.com/alibaba/fastjson/tree/1.2.83 fastjson 1.2.79版本发布,BUG修复 这又是一个bug...
### Step 1: Install #### Install option 1: Maven Add the javabrake dependency through your IDE or directly to your `pom.xml` file: ```xml io.airbrake javabrake 0.1.6 ``` #### Install option...
在实体类上添加@Alias注解进行别名,在项目启动时报错提示无法找到该类,如在User类上添加@Alias("User")注解,在mapper中指定resultType="User",项目启动报无法找到User类(can't find class User)。