Posts by Arthur Vidal • 61 points
4 posts
-
1
votes2
answers644
viewsA: Line break in data from a list
I imagine you are displaying everything on the same line because "< /br >" runs only once and after displaying outputText. Try to put the return of that list inside a foreach. Example:…
-
0
votes1
answer303
viewsA: Java Test with database in memory
Have you heard of Dbunit? http://imasters.com.br/banco-dados/mysql/automatizando-seus-testes-com-dbunit-mysql/? trace=1519021197&source=single See if that article helps you.…
-
0
votes1
answer72
viewsA: Problem with audio in web application with tomcat7 deployment
You have already tried to configure in the application’s web.xml? <mime-mapping> <extension>mp3</extension> <mime-type>audio/mpeg</mime-type> </mime-mapping>…
-
2
votes1
answer228
viewsA: Constraint error while trying to persist with Cascade
Can you show the code of when you are trying to enter? Because even though everything is right with the mapping, at the time of the Insert, possibly Voce is not inserted the reference to each other.…