exports

Results 6 comments of exports

``` @Entity class Foo { @Id private String id; @ManyToOne Bar bar; } @Entity class Bar { @Id private String id; @OneToMany Set bars; } class FooDto { private String...

@loickR Is your mapped entity approach works fine? I cannot create new resource when use mapped entity, and the validation module is broken, so I have to patch the whole...

I'm switching to mapped dto so I can modify the type now. And btw, there is an undocumented `KatharsisJpaAutoConfiguration` in the latest version which will automatically discover and load all...

I'm using katharsis-jpa :)

Any update on this? I'm trying to modify isIgnored() but then I discovered it simply ignore both the getter and setter, which is not what I want (I have a...

I'm looking forward the new feature to solve my recent problems, will this be merged?