Posts by ronny_moura • 1 point
2 posts
-
0
votes1
answer325
viewsA: How to resolve this Error: Unknown Entity when saving to Hibernate?
You should map your entities (domain classes), not Daos. <mapping class="com.livro.capitulo3.crudannotations.NotaVendaDAO"/> --> <mapping…
-
0
votes2
answers57
viewsA: How to use the same Drawer Navigation menu on multiple Activitys without repeating code?
Put all your Drawer initialize code inside an Activity(Drawernavigatableactivity extends Activity) and do all your activities that need this behavior to inherit from it.