ObjectDB Database Search
101-105 of 105 resultsHow to apply constraints in collection attributes of entity. How to apply constraints like unique, not null ...etc in collection attribute of a entity. Example : @Entity @Table(name = "agent") public class Agent implements Serializable { @Id @GeneratedValue(strategy = GenerationType. AUTO ) private Long Id; private List PhoneNumbers; public Agent() { } public | |
Nexus proxy repository with ObjectDB Remote Storage Location: http://m2.objectdb.com Download Indexes, Auto Blocking, File Validation all set | |
Enhancement Check auto generated classes, which are not signed and may be counted against the 10 classes limit | |
Error 363 - Failed to read value of inverse relationship I've got two objects: @Entity public class EEvent { @Id @GeneratedValue(strategy = GenerationType. AUTO ) private long id; @ManyToOne(optional=false) private ETown town; public ETown getTown() { return town; } public void setTown(ETown town) { this.town = town; } } And: @Entity public class ETown | |
ObjectDB 2.2.9 Added new configuration to enable / disable auto serialization of non persistable types (now disabled by default). Added support of date methods ( YEAR , MONTH , DAY , HOUR , MINUTE , SECOND ). Added support of bypassing no arg constructors of entity classes . Added support of using |