I can\'t get the primeFaces
My fileuplaad.xhtml is as shown below
Here is my bean:
@ManagedBean(name="fileDownloadController")
public class FileDownloadController implements Serializable {
private static final long serialVersionUID = 1L;
private StreamedContent file;
public FileDownloadController() {
InputStream stream = ((ServletContext)FacesContext.getCurrentInstance().getExternalContext().getContext()).getResourceAsStream("/download/FileName.csv");
file = new DefaultStreamedContent(stream, "download/csv", "FileName.csv");
}
public StreamedContent getFile() {
return file;
}
}