Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update BindingReflectionHintsRegistrar to support properties on records #29571

Closed
sdeleuze opened this issue Nov 25, 2022 · 1 comment
Closed
Assignees
Labels
theme: aot An issue related to Ahead-of-time processing type: enhancement A general enhancement
Milestone

Comments

@sdeleuze
Copy link
Contributor

Use case:

public record VetDto(Long id, String firstName, String lastName, List<Specialty> specialties) {

	public int getNrOfSpecialties() {
		return specialties.size();
	}
}
@sdeleuze sdeleuze added type: bug A general bug theme: aot An issue related to Ahead-of-time processing labels Nov 25, 2022
@sdeleuze sdeleuze added this to the 6.0.3 milestone Nov 25, 2022
@sdeleuze sdeleuze self-assigned this Nov 25, 2022
@sdeleuze sdeleuze added type: enhancement A general enhancement and removed type: bug A general bug labels Nov 25, 2022
@maciejwalkowiak
Copy link
Contributor

Seems I am not the only one who tries to run Spring PetClinic as native image :-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
theme: aot An issue related to Ahead-of-time processing type: enhancement A general enhancement
Projects
None yet
Development

No branches or pull requests

2 participants