
配置
Ares_song
Write the code. Change the world.
展开
-
js点击按钮只有第一行有反应的问题
原创 2022-04-25 22:13:12 · 605 阅读 · 2 评论 -
查看mysql密码命令
cat /var/log/mysqld.log | grep password原创 2022-02-15 21:26:59 · 1583 阅读 · 0 评论 -
MySQL 设置某一用户只对一个数据库拥有所有权限
创建新用户create user 用户名 identified by '密码';设置权限grant all on 数据库名.* to 用户名; 刷新权限flush privileges;原创 2021-11-04 16:06:29 · 998 阅读 · 0 评论 -
Linux下安装NGINX
传进去解压二.在安装之前需要先确认一下系统中是否安装:gcc,pcre-devel,openssl-devel。如果没有安装使用以下命令安装:yum -y install gcc;yum -y install pcre-devel;yum -y install openssl-devel;确保这都安装成功以后,开始编译和安装3.执行 make 命令。4.执行 make install 命令 。安装完成以后默认的安装位置为:/usr/local...原创 2021-08-18 10:48:59 · 271 阅读 · 0 评论 -
查端口号和部署springboot
lsof -i:端口号不挂断运行:nohup java -jar xxxxxxx.jar &原创 2020-11-16 16:17:04 · 448 阅读 · 0 评论 -
Maven安装教程
1.Maven官网最新版下载:http://maven.apache.org/download.cgi2.配置环境变量:右键我的电脑-属性-高级系统设置-环境变量-系统变量-Path将bin目录下添加到环境变量中3.检查版本:输入cmd打开命令行,输入:mvn -v如果出现如图所示的截图,既表示配置成功 了4.配置仓库:所谓的仓库就...原创 2020-04-23 14:52:53 · 335 阅读 · 0 评论 -
idea中下载pom中的jar
mvndependency:copy-dependencies原创 2020-04-28 21:07:36 · 530 阅读 · 0 评论 -
Spring Boot + Thymeleaf 热部署
1、thymeleaf禁用缓存将thymeleaf的cache属性置为false,不使用thymeleaf的缓存功能。spring: thymeleaf: cache: false2.pom.xml加入,引入devtools:<!-- 热部署 --><dependency> <groupId>org.springframework.boot</groupId> <artifactId>s...原创 2021-04-07 12:27:31 · 511 阅读 · 0 评论