문제

I've created a WebSocket in a JSF application. It works fine, but when I invoke a JSF bean action using <h:commandButton action="#{bean.something}">, then it restarts the WebSocket connection.

Is there any way to implement this 2 types of connections without interrupting each other?

도움이 되었습니까?

해결책

The JSF <h:commandButton> component generates a HTML <input type="submit"> element which performs by default a synchronous form submit which has as consequence a full page reload and thus a full change of the HTML document.

This is fully expected behavior. You want an asynchronous (ajax) form submit instead. This way the HTML document remains the same. In order to achieve that, just nest a <f:ajax> inside the <h:commandButton>.

<h:commandButton ...>
    <f:ajax execute="@form" render="@form" />
</h:commandButton>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top