Top "Bidirectional-relation" questions

Jackson - serialization of entities with birectional relationships (avoiding cycles)

I have two entities: Parent { Child[] children; } and Child { Parent parent; } I'm aware about @JsonBackReference and @JsonManagedReference. They are good, …

java json jackson cycle bidirectional-relation
@OneToOne unidirectional and bidirectional

I have two examples that first is @OneToOne unidirectional mapping and second bidirectional. In unidirectional mapping, the owning-side table must …

jpa one-to-one bidirectional-relation
Neo4j Bidirectional Relationship

Is there a way to create bidirectional relationship in Neo4j using Cypher? I would like the relationship to be …

neo4j cypher relationship bidirectional-relation
JPA Updating Bidirectional Association

Lets assume we have the following Entities: @Entity public class Department { @OneToMany(mappedBy="department") private List<Employee> employees; } @…

java hibernate jpa bidirectional-relation
Is there such a thing as bidirectional maps in Scala?

I'd like to link 2 columns of unique identifiers and be able to get a first column value by a second …

scala collections map scala-collections bidirectional-relation