Posts by philabreu • 41 points
5 posts
-
1
votes0
answers88
viewsQ: Rollback to persist entity with Hibernate
I have an entity Product: @Entity @Table(name = "produto") public class Produto implements Serializable { private static final long serialVersionUID = 1L; private Long id; private Cliente cliente;…
-
0
votes1
answer44
viewsA: How to resolve Invalidformatexception in xls file generated by Jett?
I found out that actually the xls is getting corrupted by Maven...when I try to open the file that is in the wildfly deploy folder it already comes corrupted...I searched some solutions to resolve…
-
0
votes1
answer44
viewsQ: How to resolve Invalidformatexception in xls file generated by Jett?
I have a way of generating reports done with Jett: Map<String, Object> beans = new HashMap<String, Object>(); beans.put("fichasTecnicasMateriaPrimaResumo",…
-
0
votes1
answer10
viewsA: How to resolve ioexception in xls file generated by Jett?
I decided by passing the entry as Inputstream No String: Map<String, Object> beans = new HashMap<String, Object>(); beans.put("fichasTecnicasMateriaPrimaResumo",…
-
0
votes1
answer10
viewsQ: How to resolve ioexception in xls file generated by Jett?
Guys I have a bean with way to generate report so done with Jett: Map<String, Object> beans = new HashMap<String, Object>(); beans.put("fichasTecnicasMateriaPrimaResumo",…