0
votes
Is using data transfer objects in ejb3 considered best practice
I think DTOs existence is related to JPA/Hibernate flaws. If you could always do transparently lazy initialization you will never use them. So using DTOs is a contract where my domain/work …
0
votes
Drools Flow Persistence with MySQL (jpa, hibernate)
It looks like you have to configure your Datasource as XA. Here you have an example
<datasources>
<xa-datasource>
<jndi-name>jdbc/my_ds</jndi-name>
…
