Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
0ee50484
Commit
0ee50484
authored
Jun 04, 2017
by
Huang YunKun
Committed by
Stephane Nicoll
Jun 05, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document InfluxDB support
See gh-9404
parent
540dca7b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
+31
-0
spring-boot-features.adoc
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
+31
-0
No files found.
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
View file @
0ee50484
...
@@ -4015,6 +4015,37 @@ validation altogether using the `spring.ldap.embedded.validation.enabled` proper
...
@@ -4015,6 +4015,37 @@ validation altogether using the `spring.ldap.embedded.validation.enabled` proper
you have custom attributes, you can use `spring.ldap.embedded.validation.schema` to define
you have custom attributes, you can use `spring.ldap.embedded.validation.schema` to define
your custom attribute types or object classes.
your custom attribute types or object classes.
[[boot-features-influxdb]]
=== InfluxDB
https://www.influxdata.com/[InfluxDB] is an open-source time series database developed by InfluxData.
It is written in Go and optimized for fast, high-availability storage and retrieval of time series data in fields such
as operations monitoring, application metrics, Internet of Things sensor data, and real-time analytics.
It also has support for processing data from Graphite.
[[boot-features-connecting-to-influxdb]]
==== Connecting to InfluxDB
You can inject an auto-configured `org.influxdb.InfluxDB` to access InfluxDB databases. You must specify your InfluxDB server url,
there is no default url.
[source,java,indent=0]
----
@Component
public class MyBean {
private InfluxDB influxDB;
@Autowired
public MyBean(InfluxDB influxDB) {
this.influxDB = influxDB;
}
// ...
}
----
You can set `spring.influx.client.url` property to change the URL. If the connection to InfluxDB require user and password,
you can set `spring.influx.client.user` property and `spring.influx.client.password` property to change them.
[[boot-features-caching]]
[[boot-features-caching]]
== Caching
== Caching
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment