spring gateway in wildfly server
I have an application using Spring Cloud Gateway and a microservice built with Spring Boot. When I run them through IntelliJ, they work perfectly. However, when I deploy them on two local WildFly instances, it can no longer find the routes from the gateway, and I can only access the microservice directly. I'm using WildFly 33 and JDK 21 and Kotlin.
My router
@Configuration
class GatewayConfig(
@Autowired private val gatewayFilter: GatewayFilter,
) {
@Bean
fun...