Posts by Thiago Paiva • 97 points
8 posts
-
0
votes1
answer55
viewsA: Jenkins with Spring Boot = Exceptioniitializererror
We were able to solve the problem by calling the generated application: Instead of just nohup java -jar was added the nice to give priority to implementation: nohup nice java -jar $NOMEDOARQUIVOJAR…
-
-3
votes1
answer55
viewsQ: Jenkins with Spring Boot = Exceptioniitializererror
I have an application developed with spring-boot. If I manually call the jar generated via Maven by the java -jar command, the application starts normally, and we can use it here. However, to…
-
1
votes0
answers57
viewsQ: php_java extension does not work
Hello! I am having problems calling a java application in my php code, through the extension php_java: 1) I changed the configuration in php.ini, and the files are in the address described in the…
-
0
votes6
answers710
viewsA: On Click only works once
the toggle would not be enough? $(document).ready(function () { $('li[name=music]').off().on('click', function () { $(this).toggle(); } }
-
3
votes1
answer935
viewsQ: JPA/Primefaces - Add/Remove records from a daughter table
I have a problem in a cadastral panel. There is a register of store network in which I am taking care of the implementation. I can normally insert and remove items from the datatable, but this is…
-
0
votes1
answer393
viewsA: JPA - Registry error not found right after insertion
Eventually I checked the database and noticed that the triggers were active. Just like @Generatedvalue and @Sequencegenerator were being used in the class. Soon, the id was updated within the class,…
-
1
votes0
answers846
viewsQ: Jasper report is not generated on production server
a problem in the use of JasperReports. I created a class to generate the reports, from some parameters. It inside the Eclipse generates normally, but when I export the WAR and put into production,…
-
5
votes1
answer393
viewsQ: JPA - Registry error not found right after insertion
A question about JPA procedures, because of a mistake that happened and I’m not getting it. I’m taking care of a part of the system that feeds a card order table. It searches if the user that the…