How to use Jboss with Spring Boot? - java

I am learning Spring Boot and wanted to know if there is any way to use Jboss as application server using gradle.
Greetings

Related

Spring Cloud Vault without Spring Boot in OSGi environment

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.

Microprofile running in weblogic like spring boot

Is it possible to run eclipse Microprofile running in WebLogic like spring boot?

Use embedded tomcat instead of netty with spring-gateway

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.

Why tomcat is not required in spring boot

I am new in spring boot. can anyone help me out with this? Why tomcat is not required in spring boot? Any help well be great.
A Spring Boot Application contains the binaries for the server (example, tomcat.jar). It means you can run a web application as a normal Java application.
As you can see in the following text from https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#howto-embedded-web-servers, you can change the server to a server of your choice:
For servlet stack applications, the spring-boot-starter-web includes
Tomcat by including spring-boot-starter-tomcat, but you can use
spring-boot-starter-jetty or spring-boot-starter-undertow instead.

How to implement RMI with Spring 4?

Update
Sorry for not being clear in my question, I am developing a Spring project with the next dependencies
Spring Boot
Spring Data
Mysql
wsdl
In the project I exposed soap Web services with Spring Data for persistence, I have to use RMI for support of application desktop.
I tried the following :
Integrate in the same project Spring and RMI (using RMI Register ) successfully but when I tried use Spring annotations obviously not working.
I'm searching when I found that Spring have support for RMI using XML configuration but I need the configuration in annotations.
My question How to would implement RMI in my project?
I'm using latest version in all dependencies

Categories