python: 1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 #@Time : 2020/5/3 18:44 4 #@Author: hdq 5 #@File : server.py 6 #将接口以服务器的方式暴露以提供给Java调用缩短调用时 ...
分类:
编程语言 时间:
2020-12-31 12:44:23
阅读次数:
0
一、命令分为: 内部命令:shell自带的命令 外部命令:不是shell自带的命令 二、如何查看是否为内外部命令 type eg:type cd 当看到builtin说明它是一个内部命令 eg: type ifconfig 没有builtin说明它是一个外部命令 三、file命令:查看文件类型(li ...
分类:
系统相关 时间:
2020-12-31 12:41:45
阅读次数:
0
gedit自动编译: #!/bin/sh name=$GEDIT_CURRENT_DOCUMENT_NAME dir=$GEDIT_CURRENT_DOCUMENT_DIR pre=${name%.*} g++ $dir/$name -o $pre -std=c++11 -w if test $? ...
分类:
其他好文 时间:
2020-12-31 12:41:14
阅读次数:
0
一、IDEA创建java工程 File->New->Project Java->选择对应的JDK->Next 填写项目名称、指定工程路径->Finish 然后在src下右键新建包结构 新建Java Class文件 运行程序 设置class文件编译路径 二、创建Web工程 (1)先创建Java工程 ( ...
分类:
编程语言 时间:
2020-12-31 12:32:14
阅读次数:
0
require.context: https://webpack.js.org/guides/dependency-management/#requirecontext require.context(directory, useSubdirectories = true, regExp = /^\ ...
分类:
Web程序 时间:
2020-12-31 12:11:57
阅读次数:
0
在阿里云服务器Centos7中安装mysql5.7,解压数据库初始化后,报错 ./mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or di ...
分类:
数据库 时间:
2020-12-31 11:58:26
阅读次数:
0
import os import time import shutil def del_file(filepath): """ 删除某一目录下的所有文件或文件夹 """ del_list = os.listdir(filepath) for f in del_list: file_path = os ...
分类:
其他好文 时间:
2020-12-31 11:42:16
阅读次数:
0
错误提示: Add-Migration : The term 'Add-Migration' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelli ...
分类:
Web程序 时间:
2020-12-30 11:32:15
阅读次数:
0
状态管理-salt安装apache 编辑主配置文件,定义几个环境。 vim /etc/salt/master file_roots: base: - /srv/salt/base dev: - /srv/salt/dev test: - /srv/salt/test prod: - /srv/sal ...
分类:
其他好文 时间:
2020-12-30 11:27:09
阅读次数:
0
问题症状 日志里同时出现正常的日志目录和 IS_UNDEFINED application.properties如下 logging.file.path=logs spring.application.name=mes logback-spring.xml配置 <?xml version="1.0" ...
分类:
编程语言 时间:
2020-12-30 11:23:04
阅读次数:
0