Reading Data with MyBatis
Step 1
package com.app.mappers
class Item {
Long id
String label
}Step 2
package com.app.mappers
interface ItemMapper {
Item findById(Long id)
}Step 3
Step 4
Step 5

Last updated