- 博客(20)
- 资源 (17)
- 收藏
- 关注
原创 内网穿透,公网映射工具,建站,小程序,微信,钉钉开发必备,ngrok
本地服务外部访问,ngrok,免费内网穿透,公网映射内网穿透目的:这里举两个例子:后端开发的同学请看:前端同学请看:总之:开始:工具下载:更新、问题反馈加QQ群516737034 / [我的主页http://ngrokk.fun](http://ngrokk.fun)Windows:Linux:Mac:解压:解压时杀毒软件可能会报病毒警告 ,可忽略运行:双击脚本文件,弹出窗口,输入自定义域名(可...
2020-09-01 20:46:25 1964 1
原创 调试workerjs中的主程序
3. 选择需要调试的脚本点击 inspect 后,会弹出调试窗口,即可像正常js代码一样调试。2. 打开一个空白页并访问 chrome://inspect/#workers。
2024-03-16 01:21:53 340 1
原创 将ES中的json字符串转为可以搜索的字段
使用flattened数据类型,Elasticsearch能够自动展开嵌套的JSON对象,并将其中的字段作为单独的字段进行索引和查询。这使得存储在单个字符串字段中的JSON数据也能够被高效地搜索。
2024-03-09 22:41:51 704 1
原创 ES部署多节点配置
配置文件cluster.name: my-applicationnode.name: node-1node.master: true/falsenode.data: falsenode.attr.rack: r1path.data: /data/es/datapath.logs: /data/es/logsbootstrap.memory_lock: truenetwork.host: 0.0.0.0http.port: 9200discovery.seed_hosts: ["19
2022-03-27 21:45:44 3192
原创 ngrok服务端的搭建与客户端生成
前提是安装了Golang的Linux环境下载https://github.com/inconshreveable/ngrok/archive/refs/heads/master.zip解压ngrok-master.zip执行如下命令export NGROK_DOMAIN="修改为你自己的域名"cd /ngrok-masteropenssl genrsa -out rootCA.key 2048openssl req -x509 -new -nodes -key rootCA.key -s
2022-03-15 18:56:36 1151
原创 Svelte的UI组件库
Svelte Material UI地址:[https://sveltematerialui.com/](https://sveltematerialui.com/)Material: 谷歌出品的扁平化风格。Carbon Components SvelteCarbon:IBM 开源设计。SmelteSmelte:Google Material Design 在 Svelte 和 Tailwind 上的另一实现。 SvelteitSvelteit: 简约的 UI/UX 组件库。A
2022-03-07 13:04:40 1575
原创 MongoDB Spring Data创建索引工具
MongoDB Spring Data 创建索引工具工具类package com.man.tools.mongodb.factory;import cn.hutool.core.annotation.AnnotationUtil;import cn.hutool.json.JSONObject;import cn.hutool.json.JSONUtil;import com.theone.date.util.DateUtil;import org.slf4j.Logger;import
2022-02-12 20:23:18 1060
原创 MongoDB迁移备份还原小坑
执行备份库mongodump --db 库名称 --out 备份存放路径执行恢复库mongorestore --db 库名称 备份存放路径实例导出数据mongodump --host 192.168.1.1 --port 27020 --username root --password mypwd --authenticationDatabase admin --db user-data --out /home/user-data导入数据mongorestore --host 192.
2021-10-11 18:57:19 1233
原创 spring-shiro.xml文件
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springfr
2017-12-15 01:13:19 1530
原创 mybatis.xml配置文件
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN""http://mybatis.org/dtd/mybatis-3-config.dtd"> <!-- --> <!--
2017-12-15 01:12:15 155
原创 sprin-mybatis.xml文件
<beans default-lazy-init="true" xmlns="http://www.springframework.org/schema/beans" xmlns:p="http://www.springframework.org/schema/p" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2017-12-15 01:10:29 133
原创 spring-mvc.xml文件
<beans default-lazy-init="true" xmlns="http://www.springframework.org/schema/beans" xmlns:p="http://www.springframework.org/schema/p" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2017-12-15 01:09:39 489
原创 ssm的数据库配置文件config.properties
driver=com.mysql.jdbc.Driverurl=jdbc:mysql:///ttms?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true&useSSL=trueusername=rootpassword=rootinitialSize=5maxActive=50minIdle=0maxWait=
2017-12-15 01:08:06 1496
原创 ssm的web.xml文件
ttms1.02 dispatcherServlet org.springframework.web.servlet.DispatcherServlet contextConfigLocation classpath:spring-*.xml 1 dispatcherServlet *.do Delegat
2017-12-15 01:06:31 250
原创 ssm的pon.xml文件
4.0.0 cn.tedu ttms1.02 0.0.1-SNAPSHOT war <!-- 0. 创建maven项目,生成web.xml部署文件 1. 添加 spring mvc 依赖 (jar) 2. 修改 /WEB-INF/web.xml (添加spring中的servlet) 3. 添加 spring-mvc.xml配置文件 -->
2017-12-15 01:04:33 345
原创 maven的阿里镜像
aliyunaliyun Maven*http://maven.aliyun.com/nexus/content/groups/public/
2017-12-15 00:32:03 242
ngrok,免费公网映射工具,内网穿透
2020-09-01
ngrok,免费公网映射工具,内网穿透
2019-08-07
Bootstrap Tree View+demo
2019-01-23
jquery+ligerUI+文档+demo
2019-01-16
Spring+SpringMVC+MyBatis+EasyUI项目
2019-01-09
Xshell 5中文版,含安装教程
2018-08-02
js 获取任意date是 date.year 中的第几周
2018-04-04
Java基于ssm框架的shiro整合,带有md5加密
2018-01-06
web ssm项目 java+spring+springmvc+mybatis
2017-12-19
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人