Is it possible to use Spring Cloud without using Spring Boot? I am asking this because I need to use Spring Cloud Vault (https://cloud.spring.io/spring-cloud-vault/reference/html/) but my runtime environment (Apache Karaf) doesn't support the use of Spring Boot, because the app is deployed in bundles (modules) in a OSGi environment. Also all the examples in the docs are using Spring Boot. Thank You.
Related
I'm running this project: https://github.com/wdahlenburg/spring-gateway-demo
It uses netty by default, how can I change it to embedded tomcat instead? I've tried to modify the pom.xml and replaces spring-boot-starter-test with spring-boot-starter-tomcat, but it doesn't work.
Does anyone know how to do that?
I don't think it's possible, spring cloud gateway is build on top of reactive Spring WebFlux project and requires netty runtime, as stated in docs:
Spring Cloud Gateway requires the Netty runtime provided by Spring Boot and Spring Webflux. It does not work in a traditional Servlet Container or when built as a WAR.
Is it possible to configure my spring application (which runs on tomcat) as service provider in SAML integration, where identity provider is configured on jboss 7 server? We have several subsystems, integrated via picketlink and now I am struggling to integrate my spring application with them.
I wonder if you have some examples / tutorials on how such integration can be implemented.
Spring Security has a SAML extentions spring-security-saml There is also a sample included.
I was learning Microservice architecture from Spring Microservices In Action book.
As one of things I wanted to migrate examples which were built on Spring Boot 1.4.4 and Spring Cloud Camden.SR5 to Spring Boot 2.1.6 and Spring Cloud Greenwich.SR1.
Now, I'm having problems with migrating of OAuth2 Auth server and resource servers since Spring decided to change packages/placement of classes and I feel completly lost since nothing seems to work.
Documentation seems to be splitted into SpringBoot/SpringSecurity/SpringOAuth2 depedencies.
What is the proper way of implementing OAuth2 AuthServer and ResourceServer in current (2.1.6) version of SpringBoot with Spring cloud Greenwich?
I am trying to host my spring boot app, based on the documentation of spring boot they mention Heroku, AWS, Google Cloud, google cloud as some of the host providers. I want to know if Springboot apps can be hosted also on Vultr and Upcloud and any other.
Spring boot is a simple java application can be deployed in any cloud. please specify if you have some specific concern.
Please look into this link:
https://docs.spring.io/spring-boot/docs/current/reference/html/deployment-install.html
I am learning Spring Boot and wanted to know if there is any way to use Jboss as application server using gradle.
Greetings