如何使用List枚举作为 MyBatis 查询的参数?我已经为它创建了一个类型处理程序,并按照另一个问题中的描述指定了映射类型。当它应该是数千时,它返回 0 个计数。
@Mapper
public interface BadgeMapper {
@Select("select count(*) from badges where appType in (#{appTypes})")
int countByType(@Param("appTypes") List<AppType> appTypes);
package com.example.mapper;
@MappedTypes({AppType.class})
public class AppTypeTypeHandler implements TypeHandler<AppType> {
@Override
public void setParameter(PreparedStatement ps, int i, AppType parameter, JdbcType jdbcType) throws SQLException {
ps.setString(i, parameter.toString()); // use toString not name()
}
public static enum AppType {
ANDROID("A", "Android"), THEME("T", "Theme"), ...
private String val;
private String desc;
AppType(String v, String d) { val = v; desc = d; }
public String toString() {
return val;
}
application.properties
mybatis.type-handlers-package=com.example.mapper
调试日志似乎显示了正确的值('A'、'T'、'ST'),但它打印的计数为 0。
System.out.println(badgeMapper.countByType(appTypes));
Console
c.s.s.mapper.BadgeMapper.countByType : ==> Preparing: select count(*) from badges where appType in (?)
c.s.s.mapper.BadgeMapper.countByType : ==> Parameters: [A, T, ST](ArrayList)
0
MySQL
mysql> select count(*) from badges where appType in ('A', 'T', 'ST');
+----------+
| count(*) |
+----------+
| 2365 |
MyBatis XML 的参考文档:http ://www.mybatis.org/mybatis-3/configuration.html#typeHandlers
忽然笑
相关分类