Window启动命令:java -jar D:\jeecg-boot-module-system-2.0.0.jar Linux下后台进程启动命令:nohup java -jar jeecg-boot-module-system-2.0.0.jar >catalina.out 2>&1 & 关掉项目 ...
分类:
编程语言 时间:
2021-06-13 09:27:48
阅读次数:
0
import turtle turtle.setup(800,600) turtle.pencolor('pink') for i in range(4): for i in range(2): turtle.circle(80,90) turtle.left(90) turtle.right(90 ...
分类:
编程语言 时间:
2021-06-13 09:20:06
阅读次数:
0
from turtle import * def square(size = 50, rgb = 'orange'): pencolor(rgb) for i in range(4): fd(size) left(90) def main(): setup(800, 600) speed(0) fo ...
分类:
其他好文 时间:
2021-06-13 09:19:11
阅读次数:
0
问题描述 报错信息如下所示: ./configure: error: the HTTP rewrite module requires the PCRE library. You can either disable the module by using --without-http_rewrit ...
分类:
Web程序 时间:
2021-06-11 19:17:07
阅读次数:
0
首先创建文件夹 mkdir mockData&&cd mockData 安装http-server npm i http-server 创建数据文件 touch index.json 在index.json 里输入 { "ret": "0", "code": 0, "msg": "", "data" ...
分类:
Web程序 时间:
2021-06-11 19:08:38
阅读次数:
0
proto编译引用外部包问题 在test.proto文件中引用了一个外部包: import "google/api/annotations.proto"; 当使用命令编译的时候提示找不到包: # protoc --go_out=plugins=grpc:. ./test.proto google/a ...
分类:
其他好文 时间:
2021-06-11 19:07:29
阅读次数:
0
低版本mybatis <foreach collection="mapInfo.entrySet()" item="item" index="index" separator=","> ${item.key} = VALUES ( #{item.value} ) </foreach> 高版本 <fo ...
分类:
其他好文 时间:
2021-06-11 19:06:24
阅读次数:
0
##Redis Redis(Remote Dictionary Server ),即远程字典服务,是一个开源的使用ANSI C语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value数据库,并提供多种语言的API。 ####1.1 定义 redis是一个key-value存储系统。和Me ...
分类:
其他好文 时间:
2021-06-11 18:36:27
阅读次数:
0
使用vuex,首先得了解它是用来干什么的? >实现数据共享的。 第一步:在项目中引入vuex ①在项目目录下,使用npm引入vuex:npm install vuex --save ②在项目的src中创建一个以store命名的文件夹,在store下创建一个以index.js命名的文件 ③在index ...
分类:
其他好文 时间:
2021-06-11 18:22:24
阅读次数:
0
1.先获取Vant Weapp包,参考官方教程:https://vant-contrib.gitee.io/vant-weapp/#/home 2.项目下新建文件夹 wxcomponents / vant(名字随意,最好与 pages 平级),拷贝@vant/weapp下的 dist 文件夹到新建的 ...
分类:
移动开发 时间:
2021-06-11 18:01:50
阅读次数:
0