我正在尝试为gwt编写一个自定义的ConstraintValidator,并将接口的实现注入其中。
这甚至可能吗?
答案 0 :(得分:0)
这是我的解决方案。
事实证明,您无法将gin托管类注入生成的类中。
我解决它的方法是使用以下链接中的信息:
https://groups.google.com/forum/?fromgroups=#!topic/google-web-toolkit/rN476RgdGAM
并且必须从gwt。
编写/扩展ValidatorGenerator一点点工作
<generate-with
class=".... CustomValidatorGenerator">
<any>
<when-type-assignable class="javax.validation.Validator" />
<when-type-assignable
class="com.google.gwt.validation.client.impl.GwtSpecificValidator" />
</any>
</generate-with>