使用 my-batis 将 return 类型转换为布尔值?

Convert return type to boolean with my-batis?

我目前正在使用以下映射:

@Select ("select count(*) from something where id = 2344")
int userExists();

但我想要这样的东西:

@Select ("select count(*) from something where id = 2344")
boolean userExists();

我可以将 0 转换为 false 并将 > 0 的所有内容转换为 true 吗?

我正在使用 Oracle。因此,我希望 my-batis 提供某种 return 类型映射。

以下是如何在 Oracle 中使用 case 语句 return 布尔值:

@Select ("select case when count(*) > 0 then 1 else 0 end result from something where id = 2344")
boolean userExists();

希望对您有所帮助。