Posts by denes bastos • 59 points
5 posts
-
1
votes0
answers67
viewsQ: Monitoring the events of the JRE
Can you monitor some jre events like start, close etc? Are there libraries for that? I need to create a log to store the time the jre is triggered, closed and know who accessed, all this should be…
-
1
votes1
answer205
viewsQ: Transform javax.persistence.Query to Arraylist
It is possible to transform a javax.persistence.Query in ArrayList. I need to return an object of the type Query but it cannot have all the values of the result. I want to eliminate some results…
-
1
votes1
answer336
viewsQ: Debug/running non-stop server
It is possible to stop an execution that is in debug at the time of breakpoint without stopping the server? I don’t want the debug continue because I know you’re wrong, for example I want you to…
-
1
votes1
answer120
viewsA: How to keep a check box true after an error message is displayed?
I noticed the problem, when the page is rerenderized the checkbox is not part of the entity. The solution is only to define a transient in the entity in order to manipulate it. @Transient private…
-
1
votes1
answer120
viewsQ: How to keep a check box true after an error message is displayed?
How can I keep a checkbox true when I display error message? Every time I display a errorMessage my checkbox turns into false. How can I solve this problem? I am using jsf2.0 and primefaces. This is…