Toshiaki Maki
                                            Toshiaki Maki
                                        
                                    Discussing here is fine for me. This feature is requested by a user. https://github.com/making/yavi/issues/140 Feedback is important as I don't know how this feature will be used. From the implementation...
I will consider redesign when developing 0.12. As I said earlier, it's unclear if this feature will be included, as it probably requires a lot of internal changes.
Yeah, I noticed it when I read the code for this issue. However, I'm not sure if I want to fix it right now as it is not determined what...
@odrotbohm Is MethodInvocationRecorder using reflection? YAVI aims not to use reflection. (Excluding Kotlin's `KProperty1`) By using [Annotation Processor](https://yavi.ik.am/#annotation-processor) instead, there is a way to avoid specifying the field name as...
There are already so many `constraint` method overloads in [`ValidatorBuilder`](https://github.com/making/yavi/blob/develop/src/main/java/am/ik/yavi/builder/ValidatorBuilder.java), so the cost increase to accepting "tiny bit of reflection" is not that small. As far as I know, users...
I think it is related to https://github.com/making/yavi/issues/165 Can you try 0.9.0-SNAPSHOT? It's available in the following repository ```xml sonatype-snapshots Sonatype Snapshots https://oss.sonatype.org/content/repositories/snapshots true ```
I'm looking for a way to provide error messages dynamically but have little time to focus on this at this moment.
@sergtitov Can you provide a complete and minimal working example? Where does `myApi` come from? Isn't it enough to pass `myApi` in the constructor of the `CustomConstraint` implementation class? It...
@sergtitov Here is the enhancement I can think of. https://github.com/making/yavi/pull/178 Do you think this will work for you as well?
@rbygrave https://github.com/making/yavi/tree/beanvalidation here it is. It’s a naive implementation. Nested constraints (@ Valid) are not supported yet