springboot接入influxdb

​1. 添加依赖:在项目的 pom.xml 文件中添加 InfluxDB 的依赖:
这将使得项目能够使用 InfluxDB 的 Java 客户端库进行连接和操作。

<dependency>
    <groupId>org.influxdbgroupId>
    <artifactId>influxdb-javaartifactId>
    <version>2.23version>
dependen>
dependency>
  1. 配置influxdb服务连接信息:在 application.properties 或 application.yml 文件中配置 InfluxDB 的连接信息,包括主机名、端口号、用户名、密码等:
    以下的名称等只是例子,具体要看你们服务器的配置
spring.influxdb.url=http://localhost:8086
spring.influxdb.username=myusername
spring.influxdb.password=mypassword
spring.influxdb.database=mydatabase
  1. 在代码中使用 InfluxDB 的 Java 客户端库进行连接和操作。例如:
import org.influxdb.InfluxDB;
import org.influxdb.InfluxDBFactory;
import org.influxdb.dto.Point;

// 1. 连接到 InfluxDB
InfluxDB influxDB = InfluxDBFactory.connect("http://localhost:8086", "myusername", "mypassword");

// 2. 创建数据库
influxDB.createDatabase("mydatabase");

//3. 写入数据
Point point = Point.measurement("cpu")
    .time(System.currentTimeMillis(), TimeUnit.MILLISECONDS)
    .addField("usage", 60)
    .build();
influxDB.write("mydatabase", "autogen", point);

// 4. 关闭连接:在应用程序关闭时,确保关闭 InfluxDB 的连接:
// 关闭连接
influxDB.close();

通过以上步骤,你就可以在 Spring Boot 项目中引入并使用 InfluxDB 了。记得根据实际情况调整配置和代码。

你可能感兴趣的:(spring,boot,后端,java,db,springboot,influxdb)