Posts by Anderson Fernandes • 98 points
3 posts
-
0
votes4
answers2941
viewsA: Primefaces datatable number formatting
The most suitable to use in your case would be the inputMask component of Primefaces. In your case the tag would look like this: <p:inputMask mask="99.999-9999"/> You can find more talking…
-
2
votes1
answer192
viewsA: What is the difference between the following methods?
The two snippets of code perform the same action, which is to invalidate a session. The difference is in which class the method comes from. The invalidate originate in the class HttpSession, already…
-
6
votes1
answer441
viewsQ: Can I use the DAO and Repository project standards together?
I’m studying data persistence in Java and I came up with these two standards: DAO and Repository. Many say that it is better to use DAO, while others say that Repository is better. Already some cite…