Ryan Baxter
Ryan Baxter
This might be applicable to other frameworks, but my only experience is with Spring. What we do now is add some logic in `SpringBootApplicationProcessor` to add certain properties to the...
It will be fairly common for an app to be deployed to various k8s deployments. Depending on the deployment it might be necessary to change the manifest properties. It would...
It is fairly common for apps to have various other dependent apps that need to be deployed and running in order to work properly. I am wondering if it would...
Spring Cloud Stream Docs are not being aggregated correctly when generating documentation. http://cloud.spring.io/spring-cloud-static/Camden.SR4/#_spring_cloud_stream When running `./release_train.sh --version Camden.SR4 --retrieveversions --ghpages` I see ``` asciidoctor: ERROR: loud-stream-docs/src/main/asciidoc/index.adoc: line 2: invalid part,...
``` Caused by: java.lang.NoClassDefFoundError: org/springframework/boot/builder/SpringApplicationBuilder at java.base/java.lang.Class.getDeclaredMethods0(Native Method) ~[na:na] at java.base/java.lang.Class.privateGetDeclaredMethods(Class.java:3167) ~[na:na] at java.base/java.lang.Class.getDeclaredMethods(Class.java:2310) ~[na:na] at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:459) ~[spring-core-5.2.1.RELEASE.jar:5.2.1.RELEASE] ... 45 common frames omitted Caused by: java.lang.ClassNotFoundException: org.springframework.boot.builder.SpringApplicationBuilder at java.base/java.net.URLClassLoader.findClass(URLClassLoader.java:471) ~[na:na]...
See this Spring Tip for the basic idea https://spring.io/blog/2019/01/23/spring-tips-hedging-client-requests-with-the-reactive-webclient-and-a-service-registry Here is some code https://github.com/spring-tips/hedging/blob/52a40255435eccb711808b4779aad8d639cc2264/client/src/main/java/com/example/client/ClientApplication.java#L40-L100
See original discussion in #14. I think if the Zuul proxy somehow knew about the security routes from the resource it is proxying from that would be ideal. That way...
Add a message deprecating this guide https://github.com/spring-guides/gs-circuit-breaker
It would be nice if a route could be configured to make requests to multiple URIs and then return the results to a specified controller to aggregate the responses. ```...