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

Reflection-based examinable property source #2

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

kashike
Copy link
Member

@kashike kashike commented Dec 24, 2020

No description provided.

for(final Field field : object.getClass().getDeclaredFields()) {
final Examine examine = field.getAnnotation(Examine.class);
if(examine != null) {
field.setAccessible(true); // TODO(kashike): does this break on new Java versions?
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i believe this sorta works -- modular applications that want to use examination would have to open their modules to deep reflection from the reflective properties provider module.

@lucko lucko mentioned this pull request Mar 15, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants