12 2022 档案
摘要:package com.atguigu.gulimall.product;import com.alibaba.fastjson.JSON;import com.alibaba.fastjson.TypeReference;import org.junit.jupiter.api.Test;impo
阅读全文
摘要:1.https://www.bejson.com/ 2.jsonString转为json格式网址: http://www.114s.cn/json/ 3.json在线解析 https://www.json.cn
阅读全文
摘要:https://id.free9.cn/
阅读全文
摘要:PPT免费下载网址: https://www.1ppt.com/ PPT模板下载:www.1ppt.com/moban/ 行业PPT模板:www.1ppt.com/hangye/ 节日PPT模板:www.1ppt.com/jieri/ PPT素材下载:www.1ppt.com/sucai/PPT背景
阅读全文
摘要:转自:https://baike.baidu.com/item/%E5%BA%94%E7%94%A8%E6%9C%8D%E5%8A%A1%E5%99%A8/4971773 一、应用服务器: 通过各种协议把商业逻辑曝露给客户端的程序应用服务器是指通过各种协议把商业逻辑曝露给客户端的程序。它提供了访问商
阅读全文
摘要:java测试存储数据到es时报错:...ActionRequestValidationException: Validation Failed: 1: type is missing... /** * 测试存储数据到 es */ @Test public void indexData() throw
阅读全文
摘要:转自:https://blog.csdn.net/weixin_43824526/article/details/123641246 1.安装好docker2.安装es(elasticsearch的简写)和kibana,最好是版本一致docker pull elasticsearch:7.11.1d
阅读全文
摘要:转自:https://blog.csdn.net/weixin_39360124/article/details/115374076 1 下载镜像docker pull nginx:latest # latest 代表最新版2 创建挂载目录mkdir -p /mydata/nginx/htmlmkd
阅读全文
摘要:使用compareTo方法: eg1:int result = bigdemical1.compareTo(bigdemical2)result = -1,表示bigdemical1小于bigdemical2;result = 0,表示bigdemical1等于bigdemical2;result
阅读全文
摘要:转自:https://blog.csdn.net/qq_43203949/article/details/105713145 1.普通数组forEach用法对于数组,foreach 循环实际上还是用的普通的 for 循环,怎么说foreach 循环就是for 循环int[] arr= {1,2,3,
阅读全文
摘要:例1: class Program { static void Main(string[] args) { List<string> list=new List<string>(); list.Add("a"); list.Add("b"); list.Add("c"); Console.Write
阅读全文