You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
org.jboss.weld.exceptions.DeploymentException: WELD-001503: Bean class which has interceptors cannot be declared final: class be.fgov.kszbcss.tad.admin.rest.model.PartnersRest$PartnersRestBuilderImpl
I guess the presence of the @Valid annotation causes the container to treat the builder as a CDI bean?
openapi-generator version
OK in 7.1.0, broken in 7.2.0 and 7.3.0.
Suggest a fix
Don't make the *BuilderImpl class final?
The text was updated successfully, but these errors were encountered:
Description
Related to #17874, the
@Valid
bean validation annotation also gets added on TYPE_USE in the builder.PartnersRest.java
This somehow causes an issue on JBoss EAP 7.4:
I guess the presence of the
@Valid
annotation causes the container to treat the builder as a CDI bean?openapi-generator version
OK in 7.1.0, broken in 7.2.0 and 7.3.0.
Suggest a fix
Don't make the *BuilderImpl class final?
The text was updated successfully, but these errors were encountered: