私は注釈の使用シナリオに少し行き詰まっており、あなたの意見を期待していました。
次の注釈 ( ExistingCustomerValidatorクラスと共に同じプロジェクトで定義) を指定すると、パッケージ com.tktserver.constraints;
@Target({ ElementType.TYPE, ElementType.ANNOTATION_TYPE })
@Retention(RetentionPolicy.RUNTIME)
@Constraint(validatedBy = { ExistingCustomerValidator.class })
@Documented
public @interface ExistingCustomerMatch {
String message() default "{customer.notfound}";
Class<?>[] groups() default {};
Class<? extends Payload>[] payload() default {};
/**
* @return The field
*/
String field();
}
および次の jxb カスタマイズ
<jaxb:bindings node="xsd:complexType[@name='customer']">
<annox:annotate>
<annox:annotate
annox:class="com.tktserver.constraints.ExistingCustomerMatch"
field="electronicUserId" />
</annox:annotate>
</jaxb:bindings>
Maven を介してソースを生成すると、これが得られます (プロジェクト全体が Maven によって処理されます)。
Caused by: org.jvnet.annox.annotation.AnnotationClassNotFoundException: Annotation class [com.tktserver.constraints.ExistingCustomerMatch] could not be found.
... 32 more
Caused by: java.lang.ClassNotFoundException: com.bgc.ticketserver.constraints.ExistingCustomerMatch
at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:169)
at org.jvnet.annox.parser.XAnnotationParser.parse(XAnnotationParser.java:76)
... 31 more
他の JSR-303 アノテーションは正常に動作するようです。私が疑問に思っているのは、ここで循環依存関係に陥っているのか、つまり、generate-sources が最初に実行されてからコンパイルされるのか、したがって、generate-sources の実行時に利用できる ExistingCustomerMatch 注釈クラスがないのか、それともこれがまったく別の獣なのかということです。
ありがとう、イオアニス