1 Reply Latest reply on Mar 7, 2018 8:21 AM by jaikiran

    Entity Bean Configuration in Wildfly 10

    shailaja.mallur

      Hi..

      Can anyone help me with the configuration required to be done for BMP(Bean Managed Persistence) for the wildfly10.

      Currently I'm using the following configuration in ejb-jar.xml.

      <entity>

      <ejb-name>EntityBean</ejb-name>

      <home>com.ejb.test.EntityBeanHome</home>

      <remote>com.ejb.test.EntityBean</remote>

      <ejb-class>com.ejb.test.EntityBean</ejb-class>

      <persistence-type>Bean</persistence-type>

      <prim-key-class>com.ejb.test.EntityBeanPK</prim-key-class>

      <reentrant>True</reentrant>

      </entity>

       

      With the above configuration ejbstore() is not getting called. Kindly suggest ..