I'm just "getting started - getting the following errorException in thread "main" java.lang.RuntimeException: No Mgr found for com.virtusa.gto.test.model.DomainClass@1c80b01
Any thoughts on what I might be doing wrong? Only happened after introducing a simple entity in line with the getting started tutorial.
The entity object does not have a corresponding database table.
I guess the next step is needed. If starting the server from within a java class, add the following to generate the table:
config.setDdlGenerate(true);config.setDdlRun(true);
If using a configuration file for ebean, set the above properties.
Already set those settings in ebean.properties file. The SQL query part works - so connection etc. seems to work. I'm using MS SQL Server DB.
There was a mistake in the entity definition - my bad. Working fine now. There was an error in the DDL generation for SQL Server though (the DDL generated has a reference to auto_increment instead of IDENTITY) - works fine if the tables are there. Love the simplicity of the API compared to JPA.