我正在尝试实施位于here的PrimeFaces通知示例。我已经实现了与链接示例中显示的完全相同的代码,但每次我尝试运行它时,我都会在Web控制台中收到以下错误。
Websocket failed. Downgrading to Comet and resending
push.js.xhtml?ln=primefaces&v=5.1:1 GET http://localhost:8080/Notify/primepush/notify?X-Atmosphere-tracking-id=0&…ng&X-Atmosphere-TrackMessageSize=true&X-atmo-protocol=true&_=1426529434646 404 (Not Found)
我已经满足了primefaces 5.1和jsf 2.2.6的所有依赖关系。我真的坚持这个。我无法弄清楚我错过了什么。有没有人遇到过这个?
答案 0 :(得分:0)
我认为你的问题就在这里。
将此包含在ui:define和script标签之间的.xhtml文件中
<ui:define name="metadata">
<script>
function doGrowling(){
growlUi.renderMessage({summary: "Summary goes here", detail: "Detail goes here", severity: 0});
}
</script>
</ui:define>
之后从你的支持bean执行javascript函数,如下所示:
public void executeGrowlMessage(){
RequestContext.getCurrentInstance().execute("doGrowling();");
}