Fading Coder

One Final Commit for the Last Sprint

MyBatis Parameter Passing Techniques

MyBatis Parameter Passing Techniques 1. Single Primitive Data Type 2. Multiple Primitive Data Types 3. Single Reference Data Type 4. Map Collection Data Type 5. Multiple Reference Data Types Interface package com.msb.mapper; import com.msb.pojo.Employee; import org.apache.ibatis.annotations.Param; i...

Practical HQL Query Patterns: From Single-Table Retrieval to Complex Joins

Entity Maping Configuration Consider a scenario mapping a bidirectional association between Division and Personnel. The Division entity represents organizational units, while Personnel represents employees assigned to those units. @Entity @Table(name = "organizational_unit") public class D...