1

I have migrated ejb2.x/Jboss 4.2.3 to EJB3.2/WildFly17. Jboss 4.2.3 has a verifier that can be used in the ant script to validate the ejb app.jar.

Like this

<target name="verify">
    <java classname="org.jboss.verifier.Main">
            <classpath refid="verify.path"/>
        <arg value="${lib.dir}/${application.jar}"/>
    </java>
</target>

I want to verify the application.jar if it is EJB3 complaint. Does WildFly provides any support for this or is it still relavant to do this?

Nemo
  • 143
  • 1
  • 12

1 Answers1

0

EJB3 does not need a verifier like EJ2x. EJB3 expects the bean to be just a valid pojo.

Nemo
  • 143
  • 1
  • 12