在一个批处理文件中调用其他批处理或可执行文件,有两种方式。 第一种 使用call 1.bat需要调用2.bat和3.bat @echo off call 2.bat call 3.bat 这种写法在实际执行时,首先运行2.bat,执行完后才会继续执行3.bat 第二种 使用start 1.bat需要 ...
分类:
其他好文 时间:
2021-06-05 17:37:23
阅读次数:
0
在SSM框架,而非maven项目中,使用分页插件PageHelper的时候,需要依赖两个jar包: PageHelper.jar Jsqlparser.jar 在maven项目中只需要PageHelper.jar 一、在配置文件中加入PageHelper插件 ? 在applicationContex ...
分类:
其他好文 时间:
2021-06-05 17:33:32
阅读次数:
0
1 package com.future; 2 3 import java.util.concurrent.*; 4 5 6 public class FDemo { 7 public static final ExecutorService service = Executors.newSingl ...
分类:
其他好文 时间:
2021-06-04 19:55:49
阅读次数:
0
linux防火墙使用以及配置 Centos 7 firewall : 1、firewalld的基本使用 启动: systemctl start firewalld 关闭: systemctl stop firewalld 查看状态: systemctl status firewalld 开机禁用 : ...
分类:
系统相关 时间:
2021-06-04 19:47:34
阅读次数:
0
安装axios npm install axios 封装 import axios from 'axios' // 创建axios实例 const service = axios.create({ baseURL: 'http://localhost:9001', // api的base_url t ...
分类:
移动开发 时间:
2021-06-04 19:39:19
阅读次数:
0
云服务器ECS 云服务器ECS(Elastic Compute Service)是阿里云提供的性能卓越、稳定可靠、弹性扩展的IaaS(Infrastructure as a Service)级别云计算服务。云服务器ECS免去了您采购IT硬件的前期准备,让您像使用水、电、天然气等公共资源一样便捷、高效 ...
分类:
其他好文 时间:
2021-06-04 19:32:13
阅读次数:
0
IDEA 启动项目报错: Failed to start connector [Connector[HTTP/1.1-9502]] 原因: 端口被占用 查进出: netstat -ano|findstr 9502 杀进程:taskkill /pid 2640 /f ...
分类:
其他好文 时间:
2021-06-04 19:02:07
阅读次数:
0
1. cookie、session、token三者的定义: 1.1 cookie Cookie 在计算机中是个存储在浏览器目录中的文本文件,当浏览器运行时,存储在 RAM 中发挥作用 (此种 Cookies 称作 Session Cookies),一旦用户从该网站或服务器退出,Cookie 可存储在 ...
分类:
其他好文 时间:
2021-06-04 18:51:31
阅读次数:
0
创建第一个启动shell脚本,如tomcat_restart.sh,内容 #/bin/sh tomcatmsg=$(ps -ef|grep tomcat|awk '{print $1$8}'|grep '/xxxx/xxx/xxxx/jdk/bin/java/'|wc -l) if [ $tomca ...
分类:
系统相关 时间:
2021-06-03 18:29:06
阅读次数:
0
测试 public static void main(String[] args) { // 将 pojoList 转换至 dtoList 中 List<Student01> dtoList = new ArrayList<>(); List<Student01> pojoList = new Ar ...
分类:
其他好文 时间:
2021-06-03 18:00:12
阅读次数:
0