PrimeFaces : How to do a dataTable with dynamic columns ?

You need use :  <p:columns> {…} </p:columns> Full Example: <p:dataTable id=”resultadosTabela” scrollWidth=”1200px” var=”s” value=”#{timeLineController.selectSeasonals}” scrollable=”true” frozenColumns=”1″ resizableColumns=”true”> <p:column headerText=”Seasonals’]}”> <p:outputLabel … More

Java : How to do a Junit test ?

Set the dependency in your pom.xml file: <!– Test –> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> Your JUnit’s tests will … More