Skip to content

Instantly share code, notes, and snippets.

@JoseLion
Created March 23, 2024 04:20
Show Gist options
  • Save JoseLion/a7fe602169ccad908be3b66d52e7d358 to your computer and use it in GitHub Desktop.
Save JoseLion/a7fe602169ccad908be3b66d52e7d358 to your computer and use it in GitHub Desktop.
Spring Boot | WebFlux + WebSocket
dependencies {
implementation(libs.spring.webflux)
implementation(libs.spring.websocket) {
exclude(group: 'org.springframework.boot', module: 'spring-boot-starter-web')
}
}
dependencyResolutionManagement {
versionCatalogs {
libs {
library('spring-webflux', 'org.springframework.boot', 'spring-boot-starter-webflux').withoutVersion()
library('spring-websocket', 'org.springframework.boot', 'spring-boot-starter-websocket').withoutVersion()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment