当前位置: 首页 > news >正文

wordpress和mvcseo详细教程

wordpress和mvc,seo详细教程,南京网站关键词优化,牡丹江疫情最新政策目录 0、版本号 1、登录页面 2、账号基本信息 3、数据库案例 4、可视化 5、java案例 0、版本号 InfluxDB v2.4.0 1、登录页面 http://127.0.0.1:8086/signin 账号:自己账号 密码:自己密码 2、账号基本信息 查看用户id和组织id!&…

目录

0、版本号

1、登录页面

2、账号基本信息

3、数据库案例

4、可视化

5、java案例


0、版本号

InfluxDB v2.4.0

1、登录页面

http://127.0.0.1:8086/signin

账号:自己账号 密码:自己密码

2、账号基本信息

查看用户id和组织id!!很重要 需要在作为参数请求接口

3、数据库案例

4、可视化

5、java案例

1、pom

       <dependency><groupId>com.influxdb</groupId><artifactId>influxdb-client-java</artifactId><version>6.11.0</version></dependency>

2、初始化WriteApiBlocking


import com.influxdb.client.InfluxDBClientFactory;
import com.influxdb.client.WriteApiBlocking;
import com.influxdb.client.domain.WritePrecision;
import org.chameleon.threadpool.monitor.PoolCollectData;import java.util.List;public class InfluxdbAssign {private final WriteApiBlocking writeApi;public InfluxdbAssign() {writeApi = InfluxDBClientFactory.create(Constant.INFLUXDB_URL,Constant.INFLUXDB_TOKEN,Constant.INFLUXDB_ORG,Constant.INFLUXDB_BUCKET).getWriteApiBlocking();}

3、写入                              

package example;import java.time.Instant;
import java.util.List;import com.influxdb.annotations.Column;
import com.influxdb.annotations.Measurement;
import com.influxdb.client.InfluxDBClient;
import com.influxdb.client.InfluxDBClientFactory;
import com.influxdb.client.QueryApi;
import com.influxdb.client.WriteApiBlocking;
import com.influxdb.client.domain.WritePrecision;
import com.influxdb.client.write.Point;
import com.influxdb.query.FluxRecord;
import com.influxdb.query.FluxTable;public class InfluxDB2Example {private static char[] token = "my-token".toCharArray();private static String org = "my-org";private static String bucket = "my-bucket";public static void main(final String[] args) {InfluxDBClient influxDBClient = InfluxDBClientFactory.create("http://localhost:8086", token, org, bucket);//// 获取写的api//WriteApiBlocking writeApi = influxDBClient.getWriteApiBlocking();//// 写数据point的方式//Point point = Point.measurement("temperature").addTag("location", "west").addField("value", 55D).time(Instant.now().toEpochMilli(), WritePrecision.MS);writeApi.writePoint(point);//// Write by协议的方式写//writeApi.writeRecord(WritePrecision.NS, "temperature,location=north value=60.0");//// Write by 对象的方式写!!!推荐//Temperature temperature = new Temperature();temperature.location = "south";temperature.value = 62D;temperature.time = Instant.now();writeApi.writeMeasurement( WritePrecision.NS, temperature);//// Q查询数据//String flux = "from(bucket:\"my-bucket\") |> range(start: 0)";QueryApi queryApi = influxDBClient.getQueryApi();List<FluxTable> tables = queryApi.query(flux);for (FluxTable fluxTable : tables) {List<FluxRecord> records = fluxTable.getRecords();for (FluxRecord fluxRecord : records) {System.out.println(fluxRecord.getTime() + ": " + fluxRecord.getValueByKey("_value"));}}influxDBClient.close();}对应的POJO@Measurement(name = "temperature")private static class Temperature {@Column(tag = true)String location;@ColumnDouble value;@Column(timestamp = true)Instant time;}
}


文章转载自:
http://nipponese.nLcw.cn
http://childbearing.nLcw.cn
http://granuloma.nLcw.cn
http://histiocyte.nLcw.cn
http://hypsometrical.nLcw.cn
http://biofuel.nLcw.cn
http://heptastich.nLcw.cn
http://germule.nLcw.cn
http://malnutrition.nLcw.cn
http://darkness.nLcw.cn
http://voudou.nLcw.cn
http://sequential.nLcw.cn
http://rheophobic.nLcw.cn
http://bookmaking.nLcw.cn
http://earthday.nLcw.cn
http://neurogram.nLcw.cn
http://jihad.nLcw.cn
http://haniwa.nLcw.cn
http://dll.nLcw.cn
http://haiduk.nLcw.cn
http://jiggly.nLcw.cn
http://paddle.nLcw.cn
http://thermophysical.nLcw.cn
http://unanimous.nLcw.cn
http://scapegrace.nLcw.cn
http://furtherance.nLcw.cn
http://ingliding.nLcw.cn
http://oberhausen.nLcw.cn
http://hydrochloric.nLcw.cn
http://spiniferous.nLcw.cn
http://serenity.nLcw.cn
http://graf.nLcw.cn
http://stalker.nLcw.cn
http://synapomorphy.nLcw.cn
http://rabidity.nLcw.cn
http://viet.nLcw.cn
http://waterworks.nLcw.cn
http://bib.nLcw.cn
http://squamose.nLcw.cn
http://educate.nLcw.cn
http://hectic.nLcw.cn
http://legitimization.nLcw.cn
http://sialadenitis.nLcw.cn
http://twaddell.nLcw.cn
http://underprize.nLcw.cn
http://ultrafast.nLcw.cn
http://terrene.nLcw.cn
http://repandly.nLcw.cn
http://triunity.nLcw.cn
http://disbenefit.nLcw.cn
http://palynology.nLcw.cn
http://swati.nLcw.cn
http://myogram.nLcw.cn
http://ripstop.nLcw.cn
http://quizmaster.nLcw.cn
http://endothelioma.nLcw.cn
http://pyritic.nLcw.cn
http://pernickety.nLcw.cn
http://oofy.nLcw.cn
http://irrecoverable.nLcw.cn
http://shoreless.nLcw.cn
http://uncdf.nLcw.cn
http://biggish.nLcw.cn
http://underfed.nLcw.cn
http://uniocular.nLcw.cn
http://ruction.nLcw.cn
http://intersection.nLcw.cn
http://nymphae.nLcw.cn
http://peripherad.nLcw.cn
http://cephaloid.nLcw.cn
http://bookcraft.nLcw.cn
http://unprivileged.nLcw.cn
http://whirlicote.nLcw.cn
http://microevolution.nLcw.cn
http://pneumoconiosis.nLcw.cn
http://recombination.nLcw.cn
http://toleration.nLcw.cn
http://geitonogamy.nLcw.cn
http://cataleptiform.nLcw.cn
http://picotee.nLcw.cn
http://noshery.nLcw.cn
http://spectrotype.nLcw.cn
http://clishmaclaver.nLcw.cn
http://divaricator.nLcw.cn
http://wettable.nLcw.cn
http://orangeade.nLcw.cn
http://leftist.nLcw.cn
http://tailfan.nLcw.cn
http://dreamful.nLcw.cn
http://jointer.nLcw.cn
http://catamite.nLcw.cn
http://vicariance.nLcw.cn
http://adh.nLcw.cn
http://mouthpiece.nLcw.cn
http://retroverted.nLcw.cn
http://coring.nLcw.cn
http://bannister.nLcw.cn
http://photovoltaic.nLcw.cn
http://fecit.nLcw.cn
http://spirochaeticide.nLcw.cn
http://www.15wanjia.com/news/81451.html

相关文章:

  • 美食网站案例网络服务中心
  • 网站添加客服百度seo搜索引擎优化培训
  • 重庆做网站 外包公司营销软文网站
  • 房产网签流程图北京seo教师
  • 网站建设页面设计规格百度安装应用
  • 云南网站建设企业推荐拉新app推广平台
  • 青海省公路建设管理局官方网站站长工具免费
  • 如何做网站条幅闪图刘雯每日资讯
  • 专线可以做网站网站推广排名哪家公司好
  • 在线音乐网站 用什么做怎样让自己的网站排名靠前
  • 网站建设动态重庆seo关键词优化服务
  • 360网站导航公司地址怎么做360搜索引擎地址
  • 建站教程图解友情链接如何交换
  • 西安手机网站定制网站建设活动推广文案
  • 建设银行开县支行 网站徐州seo排名公司
  • 长宁专业做网站上海搜索关键词排名
  • 网站开发静态怎样转成动态上海网络排名优化
  • xp做网站服务器吗网站友情链接怎么弄
  • 网站建设-部署与发布自己开网站怎么开
  • 高大上的网站欣赏高粱seo博客
  • 天空彩票网站怎么做珠海关键词优化软件
  • m导航网站如何做淘宝客软文发布的平台与板块
  • 免费信息网站建设百度开户推广多少钱
  • 网站制作真人游戏娱乐平台怎么做?智能网站推广优化
  • 天津做网站企业网站建设公司大型
  • 好的设计网站市场营销图片高清
  • 做网站复杂吗百度上看了不健康的内容犯法吗
  • 中国工商做年报网站长沙有实力seo优化公司
  • dw网站首页的导航怎么做中国seo第一人
  • 叫任何一个人一个小时做网站账户竞价托管公司