Are blob data types still supported in Liferay 7.4 CE service builder

Jamie Sammons, modified 3 Years ago. New Member Posts: 6 Join Date: 11/7/13 Recent Posts

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?

 

Jamie Sammons, modified 3 Years ago. New Member Posts: 5 Join Date: 3/8/16 Recent Posts

I have the same issue, still nothing found.