关于泛型的教训
sql查询结果我用List接收就一直报异常:
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: <|### Error querying database. Cause: java.lang.UnsupportedOperationException<|### The error may exist in ***Dao.java (best guess)<|### The error may involve ***Dao.**-Inline<|### The error occurred while setting parameters<|### SQL: *** where **=?<|### Cause: java.lang.UnsupportedOperationException
改成List<Map<String,Object>>接收就正常了,再改成List还是异常,再泛型还是正常。
注意:此处的String是指字段名称,Object是指字段值.而不是字段一\字段二
结论:泛型并不是可有可无的,能泛型就泛型,泛型能用子类不用父类!
本文来自博客园,作者:每天都要学一点,欢迎讨论和转载,转载请注明原文链接:https://www.cnblogs.com/yanan7890/p/6607172.html