如何更改主机 url websocket 配置?

How to change host url websocket configurations?

我有一个关于 websocket 客户端的问题 url。我想为我的客户端机器使用远程 websocket 服务器。

Machine1, Machine2 --->  Remote Websocket Server

我有这样的 websocket 配置。

<websocket:message-broker application-destination-prefix="/app">
    <websocket:stomp-endpoint path="/stomp" allowed-origins="*">
    <websocket:handshake-handler ref="myHandshakeHandler"/>
        <websocket:sockjs client-library-url="https://cdn.jsdelivr.net/npm/sockjs-client@1/dist/sockjs.min.js"/>
    </websocket:stomp-endpoint>
            
    <websocket:simple-broker prefix="/topic,/queue"/>
    <websocket:client-inbound-channel>
        <websocket:interceptors>
            <ref bean="myInterceptor"/>
        </websocket:interceptors>
    </websocket:client-inbound-channel>
</websocket:message-broker>

我想 post 并获取远程 url 进行 websocket 操作,这样我就可以使用多个我的 gui 机器。如何将 websocket 主机 url localhost 更改为 https://remotemachineurl:61614.

我在我的 xml 上添加了这个配置,我可以连接远程 activemq artemis。

<websocket:stomp-broker-relay prefix="/topic,/queue" relay-host="remotehost" relay-port="61614"/>