2022年1月8日
摘要:
1.创建javaweb 2.配置tomcat 3.servlet 5.filter
阅读全文
posted @ 2022-01-08 11:34
biind
阅读(20)
推荐(0)
2022年1月3日
摘要:
1.jvisualvm 2.arthas 一 jvisualvm JDK工具: C:\Program Files\Java\jdk1.8.0_131\bin 二 arthas 下载:https://github.com/alibaba/arthas/releases 相关命令: 启动:java -j
阅读全文
posted @ 2022-01-03 17:05
biind
阅读(35)
推荐(0)
摘要:
1.FileReader 2.FileWriter 3.复制文件 package com.ligy.studymvc.main3; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.File
阅读全文
posted @ 2022-01-03 08:22
biind
阅读(30)
推荐(0)
摘要:
1. FileOutputStream 2. FileInputStream 3. 复制文件 package com.ligy.studymvc.main2; import java.io.FileInputStream; import java.io.FileOutputStream; impor
阅读全文
posted @ 2022-01-03 08:10
biind
阅读(26)
推荐(0)
2022年1月1日
摘要:
1.泛型类 2.泛型接口 3.泛型方法 4.泛型集合 5.泛型通配符:? package com.ligy.studymvc; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.Spring
阅读全文
posted @ 2022-01-01 10:34
biind
阅读(38)
推荐(0)
摘要:
1.集合框架 2.例子 package com.ligy.studymvc; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; import java.uti
阅读全文
posted @ 2022-01-01 09:20
biind
阅读(45)
推荐(0)
2021年12月25日
摘要:
1.安装linux VMware-workstation-full-15.0.4-12990004.exe CentOS-7-x86_64-DVD-1810.iso 2.安装SecureCRT 连接linux工具 3.安装docker及mysql 安装教程:Docker 教程 | 菜鸟教程 (run
阅读全文
posted @ 2021-12-25 12:54
biind
阅读(180)
推荐(0)
2021年12月24日
摘要:
1.依赖 2.properties配置 3.使用 一 依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
阅读全文
posted @ 2021-12-24 22:59
biind
阅读(50)
推荐(0)
摘要:
1.创建索引put:http://localhost:9201/test1{ "mappings": { "properties": { "id": { "type": "long", "store": true }, "name": { "type": "text", "store": true
阅读全文
posted @ 2021-12-24 22:14
biind
阅读(43)
推荐(0)
2021年12月22日
摘要:
1.ElasticSearch 2.ElasticSearch-Head-Master 3.搭建集群(至少启动2个节点,否则集群连接不了) 1.下载ElasticSearchhttps://www.elastic.co/cn/start启动命令:bin/elasticsearch.bat 访问:ht
阅读全文
posted @ 2021-12-22 23:14
biind
阅读(102)
推荐(0)