点作为分隔符
当消息路由到 @MessageMapping
方法时,它们与 AntPathMatcher
匹配。默认情况下,模式预计使用斜杠 (/
) 作为分隔符。这是 Web 应用程序中的良好约定,类似于 HTTP URL。但是,如果你更习惯于消息传递约定,你可以切换到使用点 (.
) 作为分隔符。
以下示例展示了如何在 Java 配置中执行此操作
@Configuration
@EnableWebSocketMessageBroker
public class WebSocketConfig implements WebSocketMessageBrokerConfigurer {
// ...
@Override
public void configureMessageBroker(MessageBrokerRegistry registry) {
registry.setPathMatcher(new AntPathMatcher("."));
registry.enableStompBrokerRelay("/queue", "/topic");
registry.setApplicationDestinationPrefixes("/app");
}
}
以下示例展示了与前一个示例等效的 XML 配置
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:websocket="http://www.springframework.org/schema/websocket"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/websocket
https://www.springframework.org/schema/websocket/spring-websocket.xsd">
<websocket:message-broker application-destination-prefix="/app" path-matcher="pathMatcher">
<websocket:stomp-endpoint path="/stomp"/>
<websocket:stomp-broker-relay prefix="/topic,/queue" />
</websocket:message-broker>
<bean id="pathMatcher" class="org.springframework.util.AntPathMatcher">
<constructor-arg index="0" value="."/>
</bean>
</beans>
之后,控制器可以在 @MessageMapping
方法中使用点 (.
) 作为分隔符,如下例所示
@Controller
@MessageMapping("red")
public class RedController {
@MessageMapping("blue.{green}")
public void handleGreen(@DestinationVariable String green) {
// ...
}
}
客户端现在可以向 /app/red.blue.green123
发送消息。
在前面的示例中,我们没有更改“代理中继”上的前缀,因为这些前缀完全取决于外部消息代理。请参阅您使用的代理的目标标头支持的约定,以了解 STOMP 文档页面。
另一方面,“简单代理”确实依赖于配置的 PathMatcher
,因此,如果您切换分隔符,此更改也适用于代理以及代理从消息匹配目标到订阅中的模式的方式。