How to use UUID type handler with @Many annotation in MyBatis?
问题 I`m using mybatis-spring-boot-starter with 2.1.0 version. And I need to process UUID type to get a nested collection. @Select("SELECT id, name FROM t_service s") @Results(value = { @Result(column = "id", property = "id", jdbcType = JdbcType.OTHER, typeHandler = UuidTypeHandler.class), @Result(column = "name", property = "name"), @Result(property = "rates", column = "id", javaType = List.class, many = @Many(select = "getAllRates")) }) List<Service> findAll(); @Select("SELECT date_from, date_to