Results 14 comments of Ikki

Rest 对监控来说是不是不够友好,比如 `GET /user/1` 这种,本来想监控 查询用户接口的QPS, 但是会按路由展示了 每个用户查询了多少次

如果是使用Dagger 这种没有反射的依赖注入框架,是否就对 Graal VM 友好了呢?

i have similar issue, try to use `JdbcCustomConversions` to implement a function like [Mybatis enumOrdinalTypeHandler](https://github.com/mybatis/mybatis-3/blob/master/src/main/java/org/apache/ibatis/type/EnumOrdinalTypeHandler.java) but doesn't work

Hi Guys I make it work like this [enumOrdinalConverter](https://gist.github.com/Ikki-Dai/97c18aa8b535173b982aaa24c44e1dff) but while use enum type as query condition, it does't work, it use JdbcValue as input string and doesn't use converter

@pwinckles I was tried on H2db with unit test. it seems convert between enum with jdbcValue directly. I can't remember more details, but you can tried again with h2db.

as viewed auth.log, it shows "polkitd(authority=local): Unregistered Authentication Agent for unix-session", it caused system close my last session (**seems long time inactive**), so the second login will open a new...

1. Snowflake ID can provide compatibility with other RDBMS, they aways use an increment or sequence as id column. And lots of project use long type or other number type...

Thanks @tobiemh, i found the [xid](https://github.com/rs/xid) lib. it seems a snowflake like implementation. If that were the case, everything is ok now.