diff --git "a/docs/study/back/API\347\275\221\345\205\263/APISIX.md" "b/docs/study/back/API\347\275\221\345\205\263/APISIX.md" new file mode 100644 index 000000000..a986272b0 --- /dev/null +++ "b/docs/study/back/API\347\275\221\345\205\263/APISIX.md" @@ -0,0 +1,9 @@ +# Apache APISIX + +Apache APISIX 是一个动态、实时、高性能的云原生 API 网关,提供了负载均衡、动态上游、灰度发布、服务熔断、身份认证、可观测性等丰富的流量管理功能。 + +[官方网站](https://apisix.apache.org/zh/) + +[官方文档](https://apisix.apache.org/zh/docs/apisix/getting-started/README/) + +基于 [OpenResty](https://openresty.org/cn/) 和 [etcd](https://etcd.io/) diff --git a/docs/study/back/spring/SpringBoot.md b/docs/study/back/spring/SpringBoot.md index 924534494..b4a581006 100644 --- a/docs/study/back/spring/SpringBoot.md +++ b/docs/study/back/spring/SpringBoot.md @@ -35,4 +35,5 @@ ### bootstrap.properties/yml 单纯做 Spring Boot 开发,可能不太容易遇到 bootstrap.properties 配置文件,但是在结合 Spring Cloud 时,这个配置就会经常遇到了,特别是在需要加载一些远程配置文件的时侯。 + bootstrap.properties 在 application.properties 之前加载,配置在应用程序上下文的引导阶段生效。一般来说我们在 Spring Cloud Config 或者 Nacos 中会用到它。bootstrap.properties 被 Spring ApplicationContext 的父类加载,这个类先于加载 application.properties 的 ApplicatonContext 启动。