rastko
rastko

Reputation: 655

Grails Searchable plugin and GORM marshalling

I have an one-to-one relationship (hasOne in User domain and belongsTo in UserInfo domain). When the BootStrap is executing I get an exception:

org.compass.core.converter.ConversionException: Trying to marshall a null id [id] for alias [UserInfo]

this line of code produces it:

def user = new User(....., new UserInfo()).save()

Upvotes: 1

Views: 385

Answers (1)

Bob McCracken
Bob McCracken

Reputation: 516

According to Peter Ledbrook, this is a non-trivial conflict between Hibernate and Searchable: http://jira.grails.org/browse/GPSEARCHABLE-19

The solution is to turn off mirroring in the Searchable plugin and handle updating indexes manually.

Upvotes: 1

Related Questions