Posts by Antonio Cardoso • 31 points
5 posts
-
0
votes1
answer43
viewsA: Jasper Report Not Opening Report
Here is an example of the solution I gave to the method call button. <p:commandButton title="Print" actionListener="#{rpFolhaDePagamentoBean.imprimir}" ajax="false"…
-
0
votes1
answer43
viewsQ: Jasper Report Not Opening Report
I have a problem with a report generated by the Jasper Report. I created a screen with parameters of the report that when pressing the button calls the method below. public void imprimir() { try {…
-
3
votes1
answer97
viewsQ: Object getting null in the middle of the process
I am developing a system using Java, Maven, Hibernate, Primefaces and Mysql database. Within this system, I have created a program to record the amount of rainfall that occurs on the day. My table…
-
0
votes1
answer40
viewsA: How to point through Login, which database the system should connect via Hibernate
private static SessionFactory criarFabricaDeSessoes(String nomeDoArquivo) { try { Configuration configuracao = new Configuration().configure(nomeDoArquivo); ServiceRegistry…
-
0
votes1
answer40
viewsQ: How to point through Login, which database the system should connect via Hibernate
I am developing a JAVA system with JSF, Primefaces and Hibernate with Mysql database. In this system the user must inform in the login the bank that wants to connect (User, password and bank). The…