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

Using InfluxDBMapper w/o Annotations #802

Open
UglyHobbitFeet opened this issue Jan 18, 2022 · 1 comment
Open

Using InfluxDBMapper w/o Annotations #802

UglyHobbitFeet opened this issue Jan 18, 2022 · 1 comment

Comments

@UglyHobbitFeet
Copy link

Hi,

We are in the situation where our POJOs get dynamically built. There can be 100's of them. It wouldn't be feasible to annotate them all. Also, when they get dynamically rebuilt we would have to re-annotate....

Is it possible to fallback to the class/field names if there are no annotations? FWIW Spring can do it via their WebClient object. Here is example code shown from https://www.baeldung.com/spring-webflux .

WebClient client = WebClient.create("http://localhost:8080");
Flux<Employee> employeeFlux = client.get()
  .uri("/employees")
  .retrieve()
  .bodyToFlux(Employee.class);

Thanks!

@UglyHobbitFeet
Copy link
Author

Hi, just wondering when/if we can expect this to be patched in the next release? thanks!

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

No branches or pull requests

1 participant