I'm not sure, but I don't know if using BLOB (I suppose is a SQL type class) as bean property is the right way.
Maybe you can try changing it by: | @Lob @Basic(fetch = FetchType.LAZY) | byte[] contents = null; | or | @Lob @Basic(fetch = FetchType.LAZY) | InputStrem contents = null; | HTH. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4017601#4017601 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4017601 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
