Adam Gent
Adam Gent
I thought about doing this Matt but some of the reasons I did not are: - Added Complexity - Hard to implement with out adding some sort of state machine...
Matt (@mstine), I was thinking about this last night again and remembered why I didn't explore this more. I think the real issue is that Java Bean's or I should...
I will be adding HSQL as to the testing suite very soon so I'll see if I see what your talking about. Right now we only test Postgresql and Mysql.
DDL generation was out of scope for now. And automatic schema evolution like Hibernate is very out of scope and will probably never be done. There are many that feel...
The JIRM Dao portion assumes single table with references to other tables. Immutable objects and databases prefer composition over inheritance. I'll give you an example. Lets say you have a...
Avro is another option: http://avro.apache.org/
First pass and backward compatibility. `insert(...)` will still work but it will not return void but a builder like object that will have a dummy method `execute()`. See issue #15
@filiphr Sorry for the late reply. > @agentgt since you have tried this already. How do you feel about the fact that we are returning a GemValue instead of the...
> No.. I can't. But perhaps I'm failing to see the issue. The only dependencies are api's.. Right? Not altogether different from MapStruct itself Well in this particularly use case...
Its not the cleanest solution and I didn't have a chance to add more unit tests.