Good Morning.
I have a legacy Java + Hibernate 3.5 EJB aplication.
The application compile with maven with no problem, the hibernate-core-3.5.0-Final.jar is inside the EAR, but when i deploy and run the EJB in my Weblogic Server y have this error:
Code:
Caused by: java.lang.NoSuchMethodError: org.hibernate.Hibernate.createBlob([BLorg/hibernate/Session;)Ljava/sql/Blob;
Caused by this line:
Code:
ejbService.setResponseXml(Hibernate.createBlob(responseXML, session));
ResponseXML is byte[] and session is org.hibernate.Session
Any idea where is the error?