-
Notifications
You must be signed in to change notification settings - Fork 6
docs: spring example #308
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
base: main
Are you sure you want to change the base?
docs: spring example #308
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #308 +/- ##
=======================================
Coverage 87.48% 87.48%
=======================================
Files 20 20
Lines 1262 1262
Branches 204 204
=======================================
Hits 1104 1104
Misses 74 74
Partials 84 84 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
bednar
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your PR, please update examples/README.md with description about new example.
|
|
||
| <groupId>com.influxdb.v3.spring</groupId> | ||
| <artifactId>spring-example</artifactId> | ||
| <version>1.0-SNAPSHOT</version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add same version as is in the client
|
|
||
| private Application() { } | ||
|
|
||
| static Logger logger = LoggerFactory.getLogger(Application.class); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use Lombok annotation for loggers:
Proposed Changes
Adds a basic example of integrating the client with a Spring based project.
Checklist