const http=require('http') const fs=require('fs') const path=require('path') const server=http.createServer(function(req,res){ const {url}=req console ...
分类:
Web程序 时间:
2021-05-04 15:44:00
阅读次数:
0
版本 以下源码的 SpringBoot 版本:2.3.9.RELEASE。 总体上 分为两大步: 启动类上注解:@SpringBootApplication 启动类中的main方法:org.springframework.boot.SpringApplication#run(java.lang.Cl ...
分类:
编程语言 时间:
2021-05-03 12:15:50
阅读次数:
0
package com.etoak.student.framework; import com.etoak.student.entity.School; import com.etoak.student.entity.Student; import com.etoak.student.service ...
分类:
其他好文 时间:
2021-05-03 12:13:09
阅读次数:
0
盘符切换 例如 E: 查看当前目录下的所有文件 dir 切换目录 cd change directory 退回上级目录 cd .. 清理屏幕 cls 退出终端 exit 查看电脑IP ipconfig 打开应用 calc 计算器 mspaint 画图 notepad 记事本 ping命令 ping ...
分类:
其他好文 时间:
2021-05-03 12:08:43
阅读次数:
0
#树与二叉树的思维导图: ##重要概念: 树是由n(n>=1)个结点(或元素)组成的有限集合 二叉树是一个有限的结点集合,这个集合或者为空,或者由一个根结点和两棵互不相交的称为左子树和右子树的二叉树组成 ###二叉树的遍历: 先序遍历: (1)访问根结点; (2)先序遍历左子树; (3)先序遍历右子 ...
分类:
其他好文 时间:
2021-05-03 12:00:00
阅读次数:
0
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo-backupwget -O /etc/yum.repos.d/CentOS-Base.repo http://file.kangle.odata.cc/rep ...
分类:
其他好文 时间:
2021-05-03 11:53:06
阅读次数:
0
Android logd日志原理 http://gityuan.com/2018/01/27/android-log/ 一.先看上层 1.1. 布局 KEY private static final String SELECT_LOGD_SIZE_KEY = "select_logd_size"; ...
分类:
移动开发 时间:
2021-05-03 11:48:30
阅读次数:
0
//在不使用任务插件的情况下读取DWG文件的缩略图,以便在没有安装AutoCAD的计算机上浏览。using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using Syst ...
DENIED Redis is running in protected mode because protected mode is enabled, no bind address was specified, no authentication password is requested to ...
分类:
其他好文 时间:
2021-04-30 12:41:09
阅读次数:
0
api接口和restful规范 api接口 规定了前后台信息交互规则的url链接,也就是前后台信息交互的媒介 接口文档 可以手动写(公司有平台,录到平台里,) 自动生成(coreapi,swagger) restful规范(10条,规定了这么做,公司可以不采用) 1 数据的安全保障,通常使用http ...
分类:
其他好文 时间:
2021-04-30 12:37:31
阅读次数:
0