初始化
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
package com.njcn.influxdb.config;
|
||||
|
||||
import com.njcn.influxdb.utils.InfluxDbUtils;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
|
||||
/**
|
||||
* 类的介绍:
|
||||
*
|
||||
* @author xuyang
|
||||
* @version 1.0.0
|
||||
* @createTime 2021/12/10 10:48
|
||||
*/
|
||||
@Configuration
|
||||
public class InfluxDbConfig {
|
||||
|
||||
@Value("${spring.influx.url:''}")
|
||||
private String influxDBUrl;
|
||||
|
||||
@Value("${spring.influx.user:''}")
|
||||
private String userName;
|
||||
|
||||
@Value("${spring.influx.password:''}")
|
||||
private String password;
|
||||
|
||||
@Value("${spring.influx.database:''}")
|
||||
private String database;
|
||||
|
||||
@Bean
|
||||
public InfluxDbUtils influxDbUtils() {
|
||||
return new InfluxDbUtils(userName, password, influxDBUrl, database, "autogen");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user