Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个返回 2 列、一个 ID 和一个字符串的 SqlMap 查询。我知道如何返回一个映射列表,其中 ID 是键,字符串是值。返回的每一行都有一个列表项。
如何返回 1 个 ID 作为键和字符串作为值的映射?
您必须将 resultType 用作 Map ,如果查询返回多行,那么在 DAO 中您需要使用List<Map<String,Object>>
List<Map<String,Object>>