Posts by fgasparini • 171 points
4 posts
-
0
votes3
answers941
viewsA: Is it possible to convert several tables from Myisam to Innodb at the same time?
I wrote the stored file below that does what you need, recommend testing WELL it before in development or certification environment! I am not responsible for any problems =) DELIMITER $$ CREATE…
mysqlanswered fgasparini 171 -
1
votes1
answer1090
viewsA: How to run a Bean method by clicking the rich:Editor’s Save button using Richfaces4?
The Component rich:editor does not trigger any JSF event by clicking the save button (the floppy disk), however it is possible to do the following gambiarra: Add a button a4j:commandButton invisible…
-
2
votes1
answer154
viewsA: Getting Factory null in spring sessionfactory with configured resource
For Spring to resolve dependencies using Annotations, you need to add an extra configuration to your applicationContext.xml: <?xml version="1.0" encoding="UTF-8"?> <beans…
-
4
votes3
answers370
viewsA: How to perform TDD using Hibernate
It is not possible to use only the first level cache of Hibernate for use in test cases. The best approach to this problem is to configure Hibernate so that it uses some database in memory. Some…