Is it possible to use hibernate as Glassfish's persistence provider and if so HOW?
|
|
|
|
|
|
|
While I'm not an expert on either Glassfish or Hibernate, I think you'd probably find this interesting: Instructions on using Hibernte in Glassfish |
||
|
|
|
Yes, that's a common scenario. Just deploy Hibernate (and all its dependencies) either globally into Glassfish or as part of your application. Then implement your application using Hibernate as a library. The next question you have to consider is whether you want to use JPA, and Hibernate as JPA provider or if you want to use Hibernate plain. Another question then if you want to use EJBs and Entity Beans. If yes, I would recomend using JPA. If you are not using EJB Entity Beans, you can use either JPA or plain Hibernate for persisting your POJOs. |
||
|
|
