MyBatis One-to-Many and Many-to-One Relationship Queries
This guide demonstrates how to implement one-to-many and many-to-one relationship queries in MyBatis 3.5.19 using MySQL 8.0.33, focusing on the classic Department-Employee model.
Entity Design
Department Entity (Dept)
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Dept {
private Long id;
private String name;
private Strin ...
Posted on Fri, 17 Jul 2026 17:03:12 +0000 by Large