在gwt中注入自定义ConstraintValidator

时间:2012-12-03 10:49:59

标签: gwt bean-validation

我正在尝试为gwt编写一个自定义的ConstraintValidator,并将接口的实现注入其中。

这甚至可能吗?

1 个答案:

答案 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>