Spring Boot Essential Knowledge: One-to-Many Relationships, MyBatis-Plus, and Configuration
One-to-Many Relationship: Server-Side CRUD with Pagination
@Service
@Slf4j
public class BookServiceImpl implements BookService {
@Autowired
private BookMapper bookMapper;
@Override
public PageResult<BookModel> searchBooks(SearchCriteria criteria) {
PageHelper.startPage(criteria.getPage(), criteria.getPageSize());
...
Posted on Thu, 04 Jun 2026 17:14:43 +0000 by hrdyzlita
Mapping One-to-Many Relationships with MyBatis
In data-driven applications, it's common to deal with data spread across multiple related tables. Object-Relational Mapping (ORM) frameworks like MyBatis provide powerful features to map these relational structures into object models. This article focuses specificlaly on implementing one-to-many associations in MyBatis, where a single entity (t ...
Posted on Wed, 13 May 2026 08:30:43 +0000 by icedude