Browse Source

Add missing dependency and remove warnings

See gh-22171
pull/32610/head
Sébastien Deleuze 2 years ago
parent
commit
c05b4bcd71
  1. 1
      framework-docs/framework-docs.gradle
  2. 3
      framework-docs/src/main/kotlin/org/springframework/docs/web/websocket/stomp/websocketstompdestinationseparator/RedController.kt
  3. 1
      framework-docs/src/main/kotlin/org/springframework/docs/web/websocket/stomp/websocketstomphandlebrokerrelayconfigure/WebSocketConfiguration.kt
  4. 1
      framework-docs/src/main/kotlin/org/springframework/docs/web/websocket/stomp/websocketstompinterceptors/MyChannelInterceptor.kt
  5. 1
      framework-docs/src/main/kotlin/org/springframework/docs/web/websocket/stomp/websocketstompserverconfig/JettyWebSocketConfiguration.kt

1
framework-docs/framework-docs.gradle

@ -78,6 +78,7 @@ dependencies { @@ -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")

3
framework-docs/src/main/kotlin/org/springframework/docs/web/websocket/stomp/websocketstompdestinationseparator/RedController.kt

@ -14,6 +14,7 @@ @@ -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 @@ -26,7 +27,7 @@ import org.springframework.stereotype.Controller
class RedController {
@MessageMapping("blue.{green}")
fun handleGreen(@DestinationVariable green: String?) {
fun handleGreen(@DestinationVariable green: String) {
// ...
}
}

1
framework-docs/src/main/kotlin/org/springframework/docs/web/websocket/stomp/websocketstomphandlebrokerrelayconfigure/WebSocketConfiguration.kt

@ -14,6 +14,7 @@ @@ -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

1
framework-docs/src/main/kotlin/org/springframework/docs/web/websocket/stomp/websocketstompinterceptors/MyChannelInterceptor.kt

@ -14,6 +14,7 @@ @@ -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

1
framework-docs/src/main/kotlin/org/springframework/docs/web/websocket/stomp/websocketstompserverconfig/JettyWebSocketConfiguration.kt

@ -24,7 +24,6 @@ import org.springframework.web.socket.config.annotation.WebSocketMessageBrokerCo @@ -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

Loading…
Cancel
Save