0

im quite new to EJB3 and was wondering if it is possible to edit a specific record from a table using EJB3?

If so, are there any tutorials and examples on how to do this?

Thanks in advance

jonney
  • 4,255
  • 2
  • 16
  • 8

1 Answers1

0

Since entity beans were deprecated in the EJB3 standatd, you'd do this using either plain JDBC or JPA, but neither of these requires EJBs to be used.

Michael Borgwardt
  • 342,105
  • 78
  • 482
  • 720
  • Indeed, EJB does not do persistence directly and you'd use JDBC or JPA for this. However, EJB does make it a whole lot easier and straightforward to use JPA. – Arjan Tijms May 05 '11 at 21:43