I am trying to create multiple tables under one database in dropwizard
using the example from dropwizard.
here's a sample of my code. I get this
error: org.hibernate.MappingException: Named query not known:
Is there an example that has multiple tables or do I have to create a new
databse.
public void run(HelloWorldConfiguration configuration, Environment
environment) {
final PersonDAO dao = new PersonDAO(hibernateBundle.getSessionFactory());
final LADAO dao2 = new LADAO(hibernateBundle.getSessionFactory());
environment.jersey().register(new ProtectedResource());
environment.jersey().register(new PeopleResource(dao));
environment.jersey().register(new PersonResource(dao));
environment.jersey().register(new LAResource(dao2));}
--
You received this message because you are subscribed to the Google Groups
"dropwizard-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.