Skip to content

Commit

Permalink
quarkusio#36594 use of registerFullHierarchy = true
Browse files Browse the repository at this point in the history
  • Loading branch information
humcqc committed Jan 31, 2024
1 parent d101fbe commit 5b8a6ec
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import io.quarkus.hibernate.orm.panache.common.NestedProjectedClass;
import io.quarkus.runtime.annotations.RegisterForReflection;

@RegisterForReflection
@RegisterForReflection(registerFullHierarchy = true)
public class DogDto2 {
public String name;
public PersonDto2 owner;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import io.quarkus.hibernate.orm.panache.common.ProjectedFieldName;
import io.quarkus.runtime.annotations.RegisterForReflection;

@RegisterForReflection
@RegisterForReflection(registerFullHierarchy = true)
public class PersonDTO extends PersonName {

public final AddressDTO address;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import io.quarkus.hibernate.reactive.panache.common.NestedProjectedClass;
import io.quarkus.runtime.annotations.RegisterForReflection;

@RegisterForReflection
@RegisterForReflection(registerFullHierarchy = true)
public class DogDto {
public String name;
public PersonDto owner;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import io.quarkus.hibernate.reactive.panache.common.ProjectedFieldName;
import io.quarkus.runtime.annotations.RegisterForReflection;

@RegisterForReflection
@RegisterForReflection(registerFullHierarchy = true)
public class PersonDTO extends PersonName {
public final AddressDTO address;

Expand Down

0 comments on commit 5b8a6ec

Please sign in to comment.