在 MyBatis 中,如果你想要返回 int 類型的值,可以通過以下方法實現:
SELECT COUNT(*) FROM your_table
</select>
這里,resultType
屬性設置為 java.lang.Integer
,表示查詢結果將被轉換為 Integer 類型。
public interface YourMapper {
int countRecords();
}
@Autowired
private YourMapper yourMapper;
public int getRecordCount() {
return yourMapper.countRecords();
}
這樣,當你調用 getRecordCount()
方法時,它將返回一個 int 類型的值,表示查詢結果。