Posts by Danrley Alencar • 9 points
5 posts
-
0
votes1
answer75
viewsA: I cannot render a component after clicking a button
Try to involve the p:panel (dynamically rendered) in a div (h:panelGroup) and on your button you put an update on "panel". You may have tried to put the id directly on p:panel and not have appeared,…
-
0
votes1
answer41
viewsA: How to return data through the Java Criteriaapi from more than one table?
Considering, em = instance of Entitymanager. "municipio" = the name of the relationship column between Pessoa and Municipio in class Pessoa; "documento" = the name of the relationship column between…
-
-1
votes2
answers20
viewsA: Grouping datatime in selects and summing the elements of the search per day to perform a comparison of the days of a given month
Try the following: select count(solicitacao) as emissões, DATE(dataSituacao) from certificado where status like 'EMITIDO%' and DATE(dataSituacao) BETWEEN '2020-10-01' and '2020-10-31' group by…
-
0
votes1
answer30
viewsA: inject CDI Beacons into during testing using Arquillian Chameleon
The problem is related to the order of the dependencies in the pom. There is some dependency of pom type within the dependencyManagement tag that, by coming first, had priority and downloaded an…
-
0
votes1
answer30
viewsQ: inject CDI Beacons into during testing using Arquillian Chameleon
I’m unable to inject with CDI @Inject. The field movimentador If the contract is void. I believe it is because of Beans.xml, but how do I create Beans.xml using Maven-build-Deployment, because I am…