我正在尝试使用PF Push Counter示例,但没有成功。
我有两个portlet。
一种是柜台Portlet。另一个是counterview portlet。
如何订阅(注册)“渠道”?
我的代码几乎完全来自PF Showcase示例。
1)柜台(出版商)
Counter.xhtml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui">
<h:body>
<h:form id="form">
<h:outputText id="out" value="#{counterBean.count}"
styleClass="ui-widget display" />
<p:commandButton value="Click"
actionListener="#{counterBean.increment}" />
</h:form>
</h:body>
</html>
CounterBean.java
@ApplicationScoped
@ManagedBean
public class CounterBean {
private volatile int count;
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public void increment() {
count++;
System.out.println("increment() " + count);
EventBus eventBus = EventBusFactory.getDefault().eventBus();
eventBus.publish("/counter", String.valueOf(count));
}
2)CounterView(消费者)
CounterView.xhtml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui">
<h:body>
<h:form id="form1">
<h:outputText id="out" value="What's my count?" styleClass="display" />
<p:remoteCommand name="updateWidgets"
actionListener="#{consumerBean.printMessage()}" update=":form1:out" />
</h:form>
<p:socket onMessage="handleMessage" channel="/counter" />
<script type="text/javascript">
function handleMessage(data) {
updateWidgets();
}
</script>
</h:body>
</html>
使用这个例子
How Primeface Socket works?
CounterResource.java
@PushEndpoint("/counter")
public class CounterResource {
@OnMessage(encoders = { JSONEncoder.class })
public String onMessage(String count) {
System.out.println("OnMessage " + count );
return count;
}
}
@SessionScoped
@ManagedBean
public class ConsumerBean {
private int count;
private String message;
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public void printMessage(){
System.out.println("Consumer Bean Listener!");
}
}
问:count.xhtml上的计数器增加,但counterView.html上没有任何反应。
我设置了几个断点,但Consumer Bean中没有停止任何中断。
我该如何工作?
这似乎是一个简单的示例,但无法使其正常工作。
你能帮我吗?
最佳答案
第一:您的ConsumerBean是做什么用的?您有一个应用程序范围的CounterBean,其中包含您要使用“ push”显示的计数器。那么,为什么在ConsumerBean中又有一个计数器呢?
第二:在CounterView.xhtml中根本不显示计数器,甚至没有显示ConsumerBean的计数器。
在CounterView.xhtml页面中使用CounterBean(及其计数器)。
在h:outputText中,而不是“我的计数是多少?”固定值使用#{counterBean.count}(与counter.xhtml中的方法相同)。
顺便说一句,检查官方演示,它很好地工作:
http://www.primefaces.org/showcase/push/counter.xhtml
关于jsf - Primefaces Push <p:socket>如何工作?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25245294/