From this post I learned that my page which contains a StreamedContend
has to be related to an ApplicationScoped bean
, but its has the consequence that if I modify some data (saved in DB) in an other page, the image build with the StreamedContent
will not take these modifications into account
Bean
@ManagedBean
@ApplicationScoped
public class ImgBean{
@EJB
private EJUser ejuser;
@PostConstuct
private void init(){
// init some lists and objects from DB
}
public StreamedContent getChart(){
//build and return
}
}
xhtml
<p:graphicImage id="chart" value="#{imgBean.chart}" >
</p:graphicImage>
My problem is, how to refresh the data inside this Bean, but not everytime it get
the chart, because I can stay on this page and refresh the chart a lot of times, but more like when i open the page ?
The
metadata
can achieve this purpose,onload
method here will be called each time the page is openand