如何将JDBI @GetGeneratedKeys与Mapper相结合

时间:2015-09-09 11:27:12

标签: jdbi

我希望JDBI将自动生成的主键(Long值)转换为另一个类。

我的道:

@RegisterMapper(SystemIdMapper.class)
public interface SystemDao {
  @SqlUpdate("insert into systems(device_id, user_id) values(:deviceId.value, :userId.value)")
  @GetGeneratedKeys
  @Mapper(SystemIdMapper.class)
  SystemId insert(@BindBean("deviceId") DeviceId deviceId, @BindBean("userId") UserId userId);

}

我的映射器:

public class SystemIdMapper implements ResultSetMapper<SystemId> {
  @Override
  public SystemId map(int index, ResultSet r, StatementContext ctx) {
    return new SystemId(0L); //fake mapping to simplify example
  }
}

当我运行我的代码时,我在FigureItOutResultSetMapper.map(..)中得到了NullPointerException,因为

f = factory.mapperFor(rt, ctx);

将f设置为null。所以我的猜测是我的映射器注册不正确。

除了使用@RegisterMapper和@Mapper(SystemIdMapper.class)注释外,我也尝试过:

dbi.registerMapper(new SystemIdMapper());

但仍然没有运气。

1 个答案:

答案 0 :(得分:3)

您需要在GetGeneratedKeys注释中指定mapper。

@GetGeneratedKeys(SystemIdMapper.class)

@Mapper或@RegisterMapper不用于获取id。它仅在从表中选择值时使用。