My records are getting persisted perfectly except for the _class value, so I wrote the following dummy class to isolate the problem.
package test;
import org.springframework.data.annotation.TypeAlias;
@TypeAlias(value="FOOO")
public class Data {
String name;
}
The Data records getting persisted still have "_class=test.Data" in them.
Pretty sure I've done a silly mistake; not sure what.


Reply With Quote