RowMapper类型不是通用的;它不能用参数
参数化 `private static final class UserMapper implements RowMapper<User>{
public User mapRow(ResultSet rs, int rowNum) throws SQLException {
User user = new User();
return user;
}`
答案 0 :(得分:0)
在当前版本的Spring中,RowMapper
是泛型类型:
但在早期版本中,它不是:
检查您使用的是与您编写的代码兼容的Spring JDBC版本。 (或者如果您需要使用旧版本的Spring,请修改您的代码以与其兼容。)
似乎在Spring 3.0.0中更改了API