I have an EJB accessing a MySQL database through WildFly.
In the EJB I have an Entity (Book
) and a Session Bean (BookBean
) that exposes methods to manage the database from within a Remote Client.
Could you show me a code example in order to contact the Entity bean using session façades from a remote client (a simple Java class)?
The only tutorial I found here is really outdated.