上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: 一、使用工具IntelliJ,下载JDK20 https://www.oracle.com/java/technologies/downloads/ 二、采用Spring Initializr新建项目, 三、勾选web和lombok 四、点Finish后等待新建目录如下,删掉无用的目录和文件: 五、 阅读全文
posted @ 2023-07-07 16:49 世界因你而小 阅读(71) 评论(0) 推荐(0) 编辑
摘要: SpringBoot版本号 访问地址: https://spring.io/projects/spring-boot#learn 每个版本号都有对应的英文CURRENT,GA ,SNAPSHOT对应的名词 3.1.1 CURRENT GA 第一个3 代表的是主版本 第二个1 代表的是次版本,新特性, 阅读全文
posted @ 2023-07-05 16:55 世界因你而小 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 1.查看进程 先查看自己服务器下的进程,留意是否有已经有进程在运行。 ps -ef | grep java 注意:进程号就是查看运行进程这里用框框框住的部分。 2.如果有进程(占用了8888端口)在运行,还是想用8888端口运行其他jar的话,那么先杀死占用进程。(此处以端口8888号举例,其他端口 阅读全文
posted @ 2023-06-09 16:01 世界因你而小 阅读(419) 评论(0) 推荐(0) 编辑
摘要: 1、查看防火墙状态 systemctl status firewalld 2、如果不是显示active状态,需要打开防火墙 systemctl start firewalld 3、查看所有已开放的临时端口(默认为空) firewall-cmd --list-ports 4、 查看所有永久开放的端口( 阅读全文
posted @ 2023-04-18 14:53 世界因你而小 阅读(5257) 评论(0) 推荐(0) 编辑
摘要: 1.直接将文件名以文本的方式展现 后台返回的链接以逗号的形式分隔,初始化定义一个数组:files: []页面结构: <el-upload class="upload-demo" ref="upload" :action="actionPath" :file-list="files" > <el-bu 阅读全文
posted @ 2022-03-01 17:01 世界因你而小 阅读(3163) 评论(0) 推荐(0) 编辑
摘要: HTML: <el-upload class="upload-demo" action="https://www.baidu.com" // url :headers="headers" // 请求头,一般填token、orgid等身份校验信息 :with-credentials="true" // 阅读全文
posted @ 2022-03-01 15:50 世界因你而小 阅读(4520) 评论(0) 推荐(0) 编辑
摘要: 1、el-date-picker中的picker-options属性用来控制不可选日期区域和今天、明天等快捷选择2、官方文档提供的demo中只有大于某个日期不可选3、我们发现disabledDate最后return了一个返回值,我们修改这个返回值来实现大于某个日期小于某个日期都不可选,也就是设定了可 阅读全文
posted @ 2022-03-01 15:49 世界因你而小 阅读(1416) 评论(0) 推荐(0) 编辑
摘要: 修改配置文件: 在配置文件上加上这句话就可以了,没有使用插件。 "files.associations": { "*.vue":"html" } 阅读全文
posted @ 2022-01-06 10:16 世界因你而小 阅读(713) 评论(0) 推荐(0) 编辑
摘要: 修改nginx的配置文件 server { listen 8080; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { try_files $uri $uri/ /i 阅读全文
posted @ 2022-01-04 17:10 世界因你而小 阅读(414) 评论(0) 推荐(0) 编辑
摘要: 含义 扩展运算符(spread)是三个点(...)。它好比 rest 参数的逆运算,将一个数组转为用逗号分隔的参数序列。 console.log(...[1, 2, 3]) // 1 2 3 console.log(1, ...[2, 3, 4], 5) // 1 2 3 4 5 [...docum 阅读全文
posted @ 2021-12-09 14:17 世界因你而小 阅读(603) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页