每一年都奔走在自己热爱里

没有人是一座孤岛,总有谁爱着你
摘要: 1.服务器配置 1.1 重置服务器密码 购买一台服务器(以阿里云为例),购买完成后会在服务器列表生成一个服务,点击服务器进入服务器管理(不同的Linux版本界面可能会不同)我的服务器版本CentOS7.6,默认服务器初始化密码为空,所以需要先设置一 个服务器密码,方便远程连接。 1.2 设置服务器拦 阅读全文
posted @ 2021-02-03 10:03 helloliyh 阅读(994) 评论(0) 推荐(0)
摘要: 0. 博客美化效果预览 1. 设置特效首先要申请JS权限 1.1 进入[我的博客园],进入[管理]中的[设置] 1.2 找到[博客侧边栏公告],并点击[申请JS权限] 1.3 编写申请js权限内容(示例如下) 尊敬的博客园管理员: 请问是否可以帮我开通js权限,我想对文章的样式和布局需要js代码进行 阅读全文
posted @ 2020-08-25 15:18 helloliyh 阅读(7872) 评论(23) 推荐(60)
摘要: 1. 如果是搜索功能,点重置按钮,清空级联选择器数据和路径,可以使用下面方法 <el-form-item label="地区" prop="selectedRegion"> <el-cascader ref="cascader" filterable clearable :options="opti 阅读全文
posted @ 2025-10-29 14:38 helloliyh 阅读(29) 评论(0) 推荐(0)
摘要: 1. Mysql服务启动 1.1 输入命令回车输入密码可以正常连接 msyql -u root -p 1.2 Navicat连不上 2. 解决方案 2.1 连接mysql msyql -u root -p 2.2 查询所有数据库 show databases; 2.3 切换到mysql数据库 use 阅读全文
posted @ 2025-07-11 14:14 helloliyh 阅读(100) 评论(0) 推荐(0)
摘要: 1. 使用 vue-print-nb 插件 1.1 安装 vue-print-nb npm install vue-print-nb --save 1.2 在main.js中引入 import Print from 'vue-print-nb' Vue.use(Print) 1.3 打印按钮绑定 h 阅读全文
posted @ 2025-06-30 14:10 helloliyh 阅读(756) 评论(0) 推荐(0)
摘要: 1. 把自己的项目先正常打成jar包 2. 使用exe4j工具将jar转换为exe 2.1 exe4j下载地址:https://www.ej-technologies.com/download/exe4j/files 2.2 下载完成之后激活 2.3 可以点击Change License,输入秘钥L 阅读全文
posted @ 2025-05-29 14:39 helloliyh 阅读(197) 评论(0) 推荐(0)
摘要: 1. 安装 Depcheck 插件 npm i -g depcheck 2. 运行命令,查看为用到的依赖 npx depcheck depcheck 3. 查询到所有为用到的依赖 E:\Project>depcheck Unused dependencies * @riophae/vue-trees 阅读全文
posted @ 2025-04-15 14:09 helloliyh 阅读(127) 评论(0) 推荐(0)
摘要: delete from jokes where (title, author, content, url, next) in (select a.title, a.author, a.content, a.url, a.next from (select title, author, content 阅读全文
posted @ 2025-04-15 14:04 helloliyh 阅读(17) 评论(0) 推荐(0)
摘要: 1. 方法一使用firewalld 1.1 开启伪装IP firewall-cmd --permanent --add-masquerade 1.2 配置端口转发,将到达本机的12345端口的访问转发到另一台服务器的22端口 firewall-cmd --permanent --add-forwar 阅读全文
posted @ 2025-03-03 16:36 helloliyh 阅读(114) 评论(0) 推荐(0)
摘要: 1. Windows系统安装东方通 1.1 安装jdk 1.2 下载安装文件及license文件 官网:https://www.tongtech.com/sy.html 下载windows系统文件 1.3 在D盘下面创建TongWeb文件夹,上传文件 1.4 解压文件,把license文件放到bin 阅读全文
posted @ 2025-01-22 14:00 helloliyh 阅读(1955) 评论(0) 推荐(0)
摘要: 1. 新建一个SpringBoot项目 2. 在pom文件添加依赖,github地址:https://github.com/core-lib/xjar <dependencies> <!-- 添加 XJar 依赖 --> <dependency> <groupId>com.github.core-l 阅读全文
posted @ 2024-12-31 15:27 helloliyh 阅读(861) 评论(0) 推荐(0)
摘要: 1. Mysql自带备份数据库命令 MySQL备份种类 完全备份(Full Backup):包含数据表、索引、触发器、存储过程、视图、数据文件等所有内容。 增量备份(Incremental Backup):只包含最近一次完全备份之后修改过的数据,可以快速恢复最新的数据。 差异备份(Different 阅读全文
posted @ 2024-11-29 14:50 helloliyh 阅读(452) 评论(0) 推荐(0)