Add missing dependency and remove warnings

See gh-22171
This commit is contained in:
Sébastien Deleuze 2024-04-09 12:50:36 +02:00
parent 246f291f67
commit c05b4bcd71
5 changed files with 5 additions and 2 deletions

View File

@ -78,6 +78,7 @@ dependencies {
api("jakarta.validation:jakarta.validation-api")
api("org.aspectj:aspectjweaver")
api("io.projectreactor.netty:reactor-netty-http")
api("org.eclipse.jetty.websocket:jetty-websocket-jetty-api")
implementation(project(":spring-core-test"))
implementation("org.assertj:assertj-core")

View File

@ -14,6 +14,7 @@
* limitations under the License.
*/
@file:Suppress("UNUSED_PARAMETER")
package org.springframework.docs.web.websocket.stomp.websocketstompdestinationseparator
import org.springframework.messaging.handler.annotation.DestinationVariable
@ -26,7 +27,7 @@ import org.springframework.stereotype.Controller
class RedController {
@MessageMapping("blue.{green}")
fun handleGreen(@DestinationVariable green: String?) {
fun handleGreen(@DestinationVariable green: String) {
// ...
}
}

View File

@ -14,6 +14,7 @@
* limitations under the License.
*/
@file:Suppress("DEPRECATION")
package org.springframework.docs.web.websocket.stomp.websocketstomphandlebrokerrelayconfigure
import org.springframework.context.annotation.Configuration

View File

@ -14,6 +14,7 @@
* limitations under the License.
*/
@file:Suppress("UNUSED_VARIABLE")
package org.springframework.docs.web.websocket.stomp.websocketstompinterceptors
import org.springframework.messaging.Message

View File

@ -24,7 +24,6 @@ import org.springframework.web.socket.config.annotation.WebSocketMessageBrokerCo
import org.springframework.web.socket.server.jetty.JettyRequestUpgradeStrategy
import org.springframework.web.socket.server.support.DefaultHandshakeHandler
import java.time.Duration
import java.util.function.Consumer
// tag::snippet[]
@Configuration