다음은 내가 검색 한 웹 클라이언트 예제 코드입니다 (https://dzone.com/articles/easy-messaging-stomp-over).클라이언트에서 stomp.js를 사용할 때 stomp protocal을 구성하는 방법은 무엇입니까?
<script type="text/javascript">
var client = Stomp.client("ws://localhost:61614/stomp", "v11.stomp");
client.connect("", "",
function() {
client.subscribe("jms.topic.test",
function(message) {
alert(message);
}, { priority: 9 }
);
client.send("jms.topic.test", { priority: 9 }, "Pub/Sub over STOMP!");
}
);
</script>
내 질문은 왜와의 ActiveMQ를 연결하는 'WS : // 로컬 호스트 : 61614/스톰'하지 '스톰을 : // localhost를 :/스톰 61614'? activemq.xml의 아래 프로토콜과의 차이점은 무엇입니까?
<transportConnectors>
<transportConnector name="stomp" uri="stomp://0.0.0.0:61613"/>
<transportConnector name="ws" uri="ws://0.0.0.0:61614"/>
</transportConnectors>