如何利用 SpringBoot 在 ES 中实现类似链表的查询?

一、摘要

在上篇文章中,我们详细地介绍了如何在 ES 中精准地实现嵌套json对象查询?

那么问题来了,我们如何在后端通过技术方式快速地实现 es 中内嵌对象的数据查询呢?

为了方便更容易掌握技术,本文主要以上篇文章中介绍的通过商品找订单为案例,利用 SpringBoot 整合 ES 实现这个业务需求,向大家介绍具体的技术实践方案,存入es中的json数据结构如下:

{ “orderId”:”1″, “orderNo”:”123456″, “orderUserName”:”张三”, “orderItems”:[ { “orderItemId”:”12234″, “orderId”:”1″, “productName”:”火腿肠”, “brandName”:”双汇”, “sellPrice”:”28″ }, { “orderItemId”:”12235″, “orderId”:”1″, “productName”:”果冻”, “brandName”:”汇源”, “sellPrice”:”12″ } ]}

废话也不多说了,直接上代码!

二、项目实践

2.1、添加依赖

在SpringBoot项目中,添加rest-high-level-client客户端,方便与 ES 服务器连接通信,在这里需要注意一下,推荐客户端的版本与 ES 服务器的版本号一致,不然会出现接口请求错误等异常!

小编本次安装的ES服务端版本号为6.8.2,因此客户端也保持6.8.2,与之一致!

org.elasticsearch elasticsearch 6.8.2 org.elasticsearch.client elasticsearch-rest-client 6.8.2 org.elasticsearch.client elasticsearch-rest-high-level-client 6.8.2

2.2、配置 es 客户端

为了更加方便的使用 es,我们可以将其各个配置类进行封装,方便后续进行维护。

  • 在application.properties配置文件中,定义 es 配置连接地址

# 设置es参数elasticsearch.scheme=httpelasticsearch.address=127.0.0.1:9200elasticsearch.userName=elasticsearch.userPwd=elasticsearch.socketTimeout=5000elasticsearch.connectTimeout=5000elasticsearch.connectionRequestTimeout=5000

  • 创建ElasticSearch配置类,方便SpringBoot启动时注入

import org.apache.http.HttpHost;import org.apache.http.auth.AuthScope;import org.apache.http.auth.UsernamePasswordCredentials;import org.apache.http.client.CredentialsProvider;import org.apache.http.impl.client.BasicCredentialsProvider;import org.elasticsearch.client.RestClient;import org.elasticsearch.client.RestClientBuilder;import org.elasticsearch.client.RestHighLevelClient;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.springframework.beans.factory.annotation.Value;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import java.util.Arrays;import java.util.Objects;@Configurationpublic class ElasticSearchConfiguration { private static final Logger log = LoggerFactory.getLogger(ElasticSearchConfiguration.class); private static final int ADDRESS_LENGTH = 2; @Value(“${elasticsearch.scheme:http}”) private String scheme; @Value(“${elasticsearch.address}”) private String address; @Value(“${elasticsearch.userName}”) private String userName; @Value(“${elasticsearch.userPwd}”) private String userPwd; @Value(“${elasticsearch.socketTimeout:5000}”) private Integer socketTimeout; @Value(“${elasticsearch.connectTimeout:5000}”) private Integer connectTimeout; @Value(“${elasticsearch.connectionRequestTimeout:5000}”) private Integer connectionRequestTimeout; /** * 初始化客户端 * @return */ @Bean(name = “restHighLevelClient”) public RestHighLevelClient restClientBuilder() { HttpHost[] hosts = Arrays.stream(address.split(“,”)) .map(this::buildHttpHost) .filter(Objects::nonNull) .toArray(HttpHost[]::new); RestClientBuilder restClientBuilder = RestClient.builder(hosts); // 异步参数配置 restClientBuilder.setHttpClientConfigCallback(httpClientBuilder -> { httpClientBuilder.setDefaultCredentialsProvider(buildCredentialsProvider()); return httpClientBuilder; }); // 异步连接延时配置 restClientBuilder.setRequestConfigCallback(requestConfigBuilder -> { requestConfigBuilder.setConnectionRequestTimeout(connectionRequestTimeout); requestConfigBuilder.setSocketTimeout(socketTimeout); requestConfigBuilder.setConnectTimeout(connectTimeout); return requestConfigBuilder; }); return new RestHighLevelClient(restClientBuilder); } /** * 根据配置创建HttpHost * @param s * @return */ private HttpHost buildHttpHost(String s) { String[] address = s.split(“:”); if (address.length == ADDRESS_LENGTH) { String ip = address[0]; int port = Integer.parseInt(address[1]); return new HttpHost(ip, port, scheme); } else { return null; } } /** * 构建认证服务 * @return */ private CredentialsProvider buildCredentialsProvider(){ final CredentialsProvider credentialsProvider = new BasicCredentialsProvider(); credentialsProvider.setCredentials(AuthScope.ANY, new UsernamePasswordCredentials(userName, userPwd)); return credentialsProvider; }}

  • 封装ElasticSearch客户端服务类,方便公共调用处理

import com.fasterxml.jackson.databind.ObjectMapper;import org.example.es.exception.CommonException;import org.apache.commons.lang3.StringUtils;import org.elasticsearch.action.admin.indices.alias.get.GetAliasesRequest;import org.elasticsearch.action.admin.indices.create.CreateIndexRequest;import org.elasticsearch.action.admin.indices.create.CreateIndexResponse;import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequest;import org.elasticsearch.action.admin.indices.get.GetIndexRequest;import org.elasticsearch.action.admin.indices.get.GetIndexResponse;import org.elasticsearch.action.admin.indices.mapping.get.GetMappingsRequest;import org.elasticsearch.action.admin.indices.mapping.get.GetMappingsResponse;import org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest;import org.elasticsearch.action.delete.DeleteRequest;import org.elasticsearch.action.delete.DeleteResponse;import org.elasticsearch.action.get.GetRequest;import org.elasticsearch.action.get.GetResponse;import org.elasticsearch.action.index.IndexRequest;import org.elasticsearch.action.index.IndexResponse;import org.elasticsearch.action.search.SearchRequest;import org.elasticsearch.action.search.SearchResponse;import org.elasticsearch.action.support.master.AcknowledgedResponse;import org.elasticsearch.action.update.UpdateRequest;import org.elasticsearch.action.update.UpdateResponse;import org.elasticsearch.client.GetAliasesResponse;import org.elasticsearch.client.RequestOptions;import org.elasticsearch.client.RestHighLevelClient;import org.elasticsearch.common.settings.Settings;import org.elasticsearch.common.xcontent.XContentType;import org.elasticsearch.search.builder.SearchSourceBuilder;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Component;import java.io.IOException;import java.util.Collections;import java.util.Map;import java.util.Set;@Componentpublic class ElasticSearchClient { private static final Logger log = LoggerFactory.getLogger(ElasticSearchClient.class); private static final ObjectMapper objectMapper = new ObjectMapper(); @Autowired private RestHighLevelClient client; /** * 查询全部索引 * @return */ public Set getAlias(){ try { GetAliasesRequest request = new GetAliasesRequest(); GetAliasesResponse response = client.indices().getAlias(request, RequestOptions.DEFAULT); return response.getAliases().keySet(); } catch (IOException e) { log.error(“向es发起查询全部索引信息请求失败”, e); } return Collections.emptySet(); } /** * 检查索引是否存在 * @param indexName * @return */ public boolean existsIndex(String indexName){ try { // 创建请求 GetIndexRequest request = new GetIndexRequest().indices(indexName); // 执行请求,获取响应 boolean response = client.indices().exists(request, RequestOptions.DEFAULT); return response; } catch (Exception e) { log.error(“向es发起查询索引是否存在请求失败,请求参数:” + indexName, e); } return false; } /** * 查询索引 * @param indexName * @return */ public String getIndex(String indexName){ try { // 创建请求 GetIndexRequest request = new GetIndexRequest().indices(indexName); // 执行请求,获取响应 GetIndexResponse response = client.indices().get(request, RequestOptions.DEFAULT); return response.toString(); } catch (Exception e) { log.error(“向es发起查询索引请求失败,请求参数:” + indexName, e); } return StringUtils.EMPTY; } /** * 创建索引 * @param indexName * @param mapping * @return */ public void createIndex(String indexName, Map mapping){ try { CreateIndexRequest request = new CreateIndexRequest(); //索引名称 request.index(indexName); //索引配置 Settings settings = Settings.builder() .put(“index.number_of_shards”, 3) .put(“index.number_of_replicas”, 1) .put(“index.max_inner_result_window”, 5000) .build(); request.settings(settings); //索引结构 request.mapping(“_doc”,mapping); //执行请求,获取响应 CreateIndexResponse response = client.indices().create(request, RequestOptions.DEFAULT); if(!response.isAcknowledged()){ throw new CommonException(“向es发起创建索引请求失败”); } log.info(“向es发起创建索引请求成功,返回参数:{}”, response.index()); } catch (Exception e) { log.error(“向es发起创建索引请求失败,请求参数:” + indexName, e); throw new CommonException(“向es发起创建索引请求失败”); } } /** * 删除索引 * @param indexName * @return */ public void deleteIndex(String indexName){ try { DeleteIndexRequest request = new DeleteIndexRequest(indexName); AcknowledgedResponse response = client.indices().delete(request, RequestOptions.DEFAULT); if(!response.isAcknowledged()){ throw new CommonException(“向es发起删除索引请求失败”); } log.info(“向es发起删除索引请求成功,请求参数:{}”, indexName); } catch (Exception e) { log.error(“向es发起删除索引请求失败,请求参数:” + indexName, e); throw new CommonException(“向es发起删除索引请求失败”); } } /** * 查询索引映射字段 * @param indexName * @return */ public String getMapping(String indexName){ try { GetMappingsRequest request = new GetMappingsRequest().indices(indexName).types(“_doc”); GetMappingsResponse response = client.indices().getMapping(request, RequestOptions.DEFAULT); return response.toString(); } catch (Exception e) { log.error(“向es发起查询索引映射字段请求失败,请求参数:” + indexName, e); } return StringUtils.EMPTY; } /** * 添加索引映射字段 * @param indexName * @return */ public void addMapping(String indexName, Map mapping){ try { PutMappingRequest request = new PutMappingRequest(); request.indices(indexName); request.type(“_doc”); //添加字段 request.source(mapping); AcknowledgedResponse response = client.indices().putMapping(request, RequestOptions.DEFAULT); if(!response.isAcknowledged()){ throw new CommonException(“向es发起添加索引映射字段请求失败”); } log.info(“向es发起添加索引映射字段请求成功,请求参数:{}”, toJson(request)); } catch (Exception e) { log.error(“向es发起添加索引映射字段请求失败,请求参数:” + indexName, e); throw new CommonException(“向es发起添加索引映射字段请求失败”); } } /** * 向索引中添加文档 * @param indexName * @param id * @param obj */ public void addDocument(String indexName, String id, Object obj){ try { //向索引中添加文档 IndexRequest request = new IndexRequest(); // 外层参数 request.id(id); request.index(indexName); request.type(“_doc”); // 存入对象 request.source(toJson(obj), XContentType.JSON); // 发送请求 IndexResponse response = client.index(request, RequestOptions.DEFAULT); if(response.status().getStatus() >= 400){ log.warn(“向es发起添加文档数据请求失败,请求参数:{},返回参数:{}”, request.toString(), response.toString()); throw new CommonException(“向es发起添加文档数据请求失败”); } } catch (Exception e) { log.error(“向es发起添加文档数据请求失败,请求参数:” + indexName, e); throw new CommonException(“向es发起添加文档数据请求失败”); } } /** * 修改索引中的文档数据 * @param indexName * @param id * @param obj */ public void updateDocument(String indexName, String id, Map obj){ try { //修改索引中的文档数据 UpdateRequest request = new UpdateRequest(); // 外层参数 request.id(id); request.index(indexName); request.type(“_doc”); // 存入对象 request.doc(obj); request.doc(toJson(obj), XContentType.JSON); // 发送请求 UpdateResponse response = client.update(request, RequestOptions.DEFAULT); if(response.status().getStatus() >= 400){ log.warn(“向es发起修改文档数据请求失败,请求参数:{},返回参数:{}”, request.toString(), response.toString()); throw new CommonException(“向es发起修改文档数据请求失败”); } } catch (Exception e) { log.error(“向es发起修改文档数据请求失败,请求参数:” + indexName, e); throw new CommonException(“向es发起修改文档数据请求失败”); } } /** * 删除索引中的文档数据 * @param indexName * @param id */ public void deleteDocument(String indexName, String id){ try { //删除索引中的文档数据 DeleteRequest request = new DeleteRequest(); // 外层参数 request.id(id); request.index(indexName); request.type(“_doc”); // 发送请求 DeleteResponse response = client.delete(request, RequestOptions.DEFAULT); if(response.status().getStatus() >= 400){ log.warn(“向es发起删除文档数据请求失败,请求参数:{},返回参数:{}”, request.toString(), response.toString()); throw new CommonException(“向es发起删除文档数据请求失败”); } } catch (Exception e) { log.error(“向es发起删除文档数据请求失败,请求参数:” + indexName, e); throw new CommonException(“向es发起删除文档数据请求失败”); } } /** * 查询索引中的文档数据 * @param indexName * @param id */ public String getDocumentById(String indexName, String id){ try { GetRequest request = new GetRequest(); // 外层参数 request.id(id); request.index(indexName); request.type(“_doc”); // 发送请求 GetResponse response = client.get(request, RequestOptions.DEFAULT); response.getSourceAsString(); } catch (Exception e) { log.error(“向es发起查询文档数据请求失败,请求参数:” + indexName, e); } return StringUtils.EMPTY; } /** * 索引高级查询 * @param indexName * @param source * @return */ public SearchResponse searchDocument(String indexName, SearchSourceBuilder source){ //搜索 SearchRequest searchRequest = new SearchRequest(); searchRequest.indices(indexName); searchRequest.source(source); try { // 执行请求 SearchResponse response = client.search(searchRequest, RequestOptions.DEFAULT); return response; } catch (Exception e) { log.warn(“向es发起查询文档数据请求失败,请求参数:” + searchRequest.toString(), e); } return null; } /** * 将对象格式化成json,并保持原字段类型输出 * @param object * @return */ private String toJson(Object object) { try { return objectMapper.writeValueAsString(object); } catch (Exception e) { throw new CommonException(e); } }}

2.3、初始化索引结构

在使用 es 对订单进行查询搜索时,我们需要先定义好对应的订单索引结构,内容如下:

@ActiveProfiles(“dev”)@RunWith(SpringRunner.class)@SpringBootTestpublic class OrderIndexServiceJunit { @Autowired private ElasticSearchClient elasticSearchClient; /** * 初始化索引结构 * * @return */ @Test public void initIndex(){ String indexName = “orderIndex-2022-07”; // 创建请求 boolean existsIndex = elasticSearchClient.existsIndex(indexName); if (!existsIndex) { Map properties = buildMapping(); elasticSearchClient.createIndex(indexName, properties); } } /** * 构建索引结构 * * @return */ private Map buildMapping() { Map properties = new HashMap(); //订单id 唯一键ID properties.put(“orderId”, ImmutableBiMap.of(“type”, “keyword”)); //订单号 properties.put(“orderNo”, ImmutableBiMap.of(“type”, “keyword”)); //客户姓名 properties.put(“orderUserName”, ImmutableBiMap.of(“type”, “text”)); //订单项 Map orderItems = new HashMap(); //订单项ID orderItems.put(“orderItemId”, ImmutableBiMap.of(“type”, “keyword”)); //产品名称 orderItems.put(“productName”, ImmutableBiMap.of(“type”, “text”)); //品牌名称 orderItems.put(“brandName”, ImmutableBiMap.of(“type”, “text”)); //销售金额,单位分*100 orderItems.put(“sellPrice”, ImmutableBiMap.of(“type”, “integer”)); properties.put(“orderItems”, ImmutableBiMap.of(“type”, “nested”, “properties”, orderItems)); //文档结构映射 Map mapping = new HashMap(); mapping.put(“properties”, properties); return mapping; }}

2.4、向 es 中同步文档数据

索引结构创建好之后,我们需要将支持 es 搜索的订单数据同步进去。

将指定的订单 ID 从数据库查询出来,并封装成 es 订单数据结构,保存到 es 中!

@ActiveProfiles(“dev”)@RunWith(SpringRunner.class)@SpringBootTestpublic class OrderIndexServiceJunit { @Autowired private ElasticSearchClient elasticSearchClient; /** * 保存订单到ES中 * @param request */ @Test public void saveDocument(){ String indexName = “orderIndex-2022-07”; //从数据库查询最新订单数据,并封装成对应的es订单结构 String orderId = “202202020202”; OrderIndexDocDTO indexDocDTO = buildOrderIndexDocDTO(orderId); //保存数据到ES中 elasticSearchClient.addDocument(indexName, indexDocDTO.getOrderId(), indexDocDTO); }}

2.5、内嵌对象查询

内嵌对象查询分两种形式,比如,第一种通过商品、品牌、价格等条件,分页查询订单数据;第二种是通过订单ID、商品、品牌、价格等,分页查询订单项数据。具体的实践,请看下文。

  • 通过商品、品牌、价格等条件,分页查询订单数据

@ActiveProfiles(“dev”)@RunWith(SpringRunner.class)@SpringBootTestpublic class OrderIndexServiceJunit { @Autowired private ElasticSearchClient elasticSearchClient; /** * 通过商品、品牌、价格等条件,分页查询订单数据 * @param request */ @Test public void search1(){ //查询索引,支持通配符 String indexName = “orderIndex-*”; String orderUserName = “张三”; String productName = “薯条”; // 条件搜索 SearchSourceBuilder builder = new SearchSourceBuilder(); //组合搜索 BoolQueryBuilder mainBoolQuery = new BoolQueryBuilder(); mainBoolQuery.must(QueryBuilders.matchQuery(“orderUserName”, orderUserName)); //订单项相关信息搜索 BoolQueryBuilder nestedBoolQuery = new BoolQueryBuilder(); nestedBoolQuery.must(QueryBuilders.matchQuery(“orderItems.productName”, productName)); //内嵌对象搜索,需要指定path NestedQueryBuilder nestedQueryBuilder = QueryBuilders.nestedQuery(“orderItems”,nestedBoolQuery, ScoreMode.None); //子表查询 mainBoolQuery.must(nestedQueryBuilder); //封装查询参数 builder.query(mainBoolQuery); //返回参数 builder.fetchSource(new String[]{}, new String[]{}); //结果集合分页,从第一页开始,返回最多四条数据 builder.from(0).size(4); //排序 builder.sort(“orderId”, SortOrder.DESC); log.info(“dsl:{}”, builder.toString()); // 执行请求 SearchResponse response = elasticSearchClient.searchDocument(indexName, builder); // 当前返回的总行数 long count = response.getHits().getTotalHits(); // 返回的具体行数 SearchHit[] searchHits = response.getHits().getHits(); log.info(“response:{}”, response.toString()); }}

  • 通过订单ID、商品、品牌、价格等,分页查询订单项数据

@ActiveProfiles(“dev”)@RunWith(SpringRunner.class)@SpringBootTestpublic class OrderIndexServiceJunit { @Autowired private ElasticSearchClient elasticSearchClient; /** * 通过订单ID、商品、品牌、价格等,分页查询订单项数据 * @param request */ @Test public void search2(){ //查询索引,支持通配符 String indexName = “orderIndex-*”; String orderId = “202202020202”; String productName = “薯条”; // 条件搜索 SearchSourceBuilder builder = new SearchSourceBuilder(); //组合搜索 BoolQueryBuilder mainBoolQuery = new BoolQueryBuilder(); mainBoolQuery.must(QueryBuilders.termQuery(“_id”, orderId)); //订单项相关信息搜索 BoolQueryBuilder nestedBoolQuery = new BoolQueryBuilder(); nestedBoolQuery.must(QueryBuilders.matchQuery(“orderItems.productName”, productName)); //内嵌对象搜索,需要指定path NestedQueryBuilder nestedQueryBuilder = QueryBuilders.nestedQuery(“orderItems”,nestedBoolQuery, ScoreMode.None); //内嵌对象分页查询 InnerHitBuilder innerHitBuilder = new InnerHitBuilder(); //结果集合分页,从第一页开始,返回最多四条数据 innerHitBuilder.setFrom(0).setSize(4); //只返回订单项id innerHitBuilder.setFetchSourceContext(new FetchSourceContext(true, new String[]{“orderItems.orderItemId”}, new String[]{})); innerHitBuilder.addSort(SortBuilders.fieldSort(“orderItems.orderItemId”).order(SortOrder.DESC)); nestedQueryBuilder.innerHit(innerHitBuilder); //子表查询 mainBoolQuery.must(nestedQueryBuilder); //封装查询参数 builder.query(mainBoolQuery); //返回参数 builder.fetchSource(new String[]{}, new String[]{}); //结果集合分页,从第一页开始,返回最多四条数据 builder.from(0).size(4); //排序 builder.sort(“orderId”, SortOrder.DESC); log.info(“dsl:{}”, builder.toString()); // 执行请求 SearchResponse response = elasticSearchClient.searchDocument(indexName, builder); // 当前返回的订单主表总行数 long count = response.getHits().getTotalHits(); // 返回的订单主表数据 SearchHit[] searchHits = response.getHits().getHits(); // 返回查询的的订单项分页数据 Map = searchHit[0].getInnerHits(); log.info(“response:{}”, response.toString()); }}

三、小结

本文主要以通过商品名称查询订单数据为案例,介绍利用 SpringBoot 整合 es 实现数据的高效搜索,内容如果难免有些遗漏,欢迎网友指出!

原文链接:https://mp.weixin.qq.com/s/ERwwG9gBY1apk1Q6_9Sr0w

郑重声明:本文内容及图片均整理自互联网,不代表本站立场,版权归原作者所有,如有侵权请联系管理员(admin#wlmqw.com)删除。
(0)
用户投稿
上一篇 2022年7月13日
下一篇 2022年7月13日

相关推荐

  • 100块钱人民币能让泰国姑娘干啥?答案说出来,你可能难以置信

    100元可以享受泰国美女的哪些服务呢? 听说泰国美女的回答,男游客兴奋不已,怪不得都喜欢到泰国旅行。 (此处已添加小程序,请到今日头条客户端查看) 据了解,泰国每年接待的游客数量高…

    2022年8月14日
  • OC底层原理(二).内存分配与内存对齐

    从内存分配开始 在上一篇的流程图中,我们看到最后的流程中,在_class_createInstanceFromZone,我们分为三步: 1、size = cls->insta…

    2022年7月3日
  • 拿NBA当取款机!1.2亿合同刚被买断,又用2年巅峰,刷出2千万高薪

    就在前几日,詹姆斯和湖人签下了一份两年9710万美元的顶薪续约合同,就此,詹姆斯的总薪资超越杜兰特来到历史第一,有人表示湖人在玩火自焚,这笔签约达成,夺冠就难于登天,球队根本没有薪…

    2022年8月22日
  • 前晨汽车:今年上半年轻卡累计销量310辆

    6月30日,前晨汽车官微发布消息称,2022年1-6月,轻卡累计订单1959辆,累计销量310辆,二季度销量环比增长298%;智能电动重卡合作订单数百辆。

    2022年7月1日
  • 音乐板块仍存新机遇,谁能再领风骚?

    伴随着数字化浪潮,全球文娱传媒的生态体系脱胎换骨,在人工智能、虚拟现实与云计算等新技术的赋能下百花争艳,提供更丰富的功能与服务。IT桔子数据显示,在近三年(2020年—2022年6…

    2022年6月26日
  • “蔚小理”光环褪去,新能源车市场“大变天”

    “蔚小理”似乎已经不是新势力引领者的代名词。 继理想汽车与本月中旬交出最差季度成绩单后,23日,小在公布二季度财报后第二天,每股开盘就大跌超10%。同时,二者也公布了第三季度交付指…

    2022年9月8日
  • 雅迪高端之后开始变慢

    图片来源@视觉中国 文 | 蓝莓财经 电动车自1995 年问世以来,二十多年的发展,已然成为了日常出行的主要交通工具之一。 数据显示,2020年我国两轮电动车保有量约为3.2亿辆,…

    2022年8月3日
  • 镁科研:基于热-动力学协同的镁合金力学性能优化

    众所周知,金属结构材料强度和塑性的改善通常存在互斥关系,尤其对于具有六方晶格的镁合金而言,由于其较复杂的位错孪生变形机制,塑性通常较差,如何在提升强度的同时仍保持足够高的塑性始终是…

    2022年6月26日
  • 前端console.log的样式

    控制台是每个开发过程中非常有用的部分。 我们出于各种原因使用它来记录项目、查看数据、保留某些数据以供以后使用等等。 因此,考虑到经常要与它直接和间接地互动,我们介绍一种方法来赋予它…

    2022年6月27日
  • “句芒号”升空 我国碳汇监测进入天基遥感时代

    人民网北京8月4电 (记者赵竹青)8月4日11时08分,我国在太原卫星发射中心采用长征四号乙运载火箭,成功发射首颗陆地生态系统碳监测卫星“句(gōu)芒号”。 陆地生态系统碳监测卫…

    2022年8月16日

联系我们

联系邮箱:admin#wlmqw.com
工作时间:周一至周五,10:30-18:30,节假日休息