Ask Questions and Find Answers
Important:
Ask is now read-only. You can review any existing questions and answers, but not add anything new.
But - don't panic! While ask is no more, we've replaced it with discuss - the new Liferay Discussion Forum! Read more here here or just visit the site here:
discuss.liferay.com
Are blob data types still supported in Liferay 7.4 CE service builder
Below is my entity:
<entity local-service= "true" name="HL7" table="feed_in"
data-source="hl7DataSource" remote-service= "false" uuid= "false">
<column db-name="id_" name="id" primary= "true" type= "long" />
<column db-name="source_facility_name" name="facility"
type= "String" />
<column db-name="patient_account_number" name="accountNumber"
type= "String" />
<column db-name="xml" name="xml" type="Blob" />
<column db-name="message_type" name="messageType" type= "String" />
<column db-name="message_type_event_code" name="messageEvent"
type= "String" />
<column db-name="hl7_message_date" name="messageDate"
type= "Date" />
<finder name="accountNumber" return-type= "Collection">
<finder-column name= "accountNumber" />
</finder>
<finder name="facility" return-type= "Collection">
<finder-column name= "facility" />
</finder>
<finder name="FacilityAndMrn" return-type= "Collection">
<finder-column name= "facility" />
<finder-column name= "accountNumber" />
</finder>
</entity>
When I attempt to deploy, I get this exception:
Caused by: java.lang.ClassNotFoundException: org.hibernate.proxy.HibernateProxy cannot be found by com.hl7.compass.api_1.0.0
If I remove the blob column, then it deploys succesfully. Was this support removed or is there another way around it?
I have the same issue, still nothing found.