摘要:
首先添加application文件static路径,我的是yml文件 spring: mvc: static-path-pattern: /static/**然后注册拦截器类如下方法; @Overridepublic void addResourceHandlers(ResourceHandlerR 阅读全文
摘要:
package com.dp.config; import org.springframework.cloud.gateway.filter.GatewayFilterChain; import org.springframework.cloud.gateway.filter.GlobalFilte 阅读全文
摘要:
换命令启动成功: .\startup.cmd -m standalone 阅读全文
摘要:
https://dev.mysql.com/downloads/mysql/ 下载离线包 tar -xvf mysql-server_8.4.3-1ubuntu24.04_amd64.deb-bundle.tar -C /mysql 解压完依次执行: dpkg -i mysql-community- 阅读全文
摘要:
复制:并显示复制详情 sudo cp -r -v aaa/* bbb/ 移动 mv source_dir destination_dir 更改名称 mv old_file_name new_file_name 模糊删除文件夹及子文件夹内容 find . -name '*2020*' -exec rm 阅读全文
摘要:
sudo apt update sudo apt upgrade sudo apt dist-upgrade sudo apt install update-manager-core sudo nano /etc/update-manager/release-upgrades 并确保文件包含: Pr 阅读全文
摘要:
1、安装1.1、下载mysql下载地址:MySQL :: Download MySQL Community Server 将下载的文件上传到服务器中,或者使用命令下载(安装自己需要的版本) wget https://downloads.mysql.com/archives/get/p/23/file 阅读全文
摘要:
sudo apt update sudo apt upgrade -y sudo apt dist-upgrade -y 安装更新管理器核心包 sudo apt install update-manager-core -y 编辑 /etc/update-manager/release-upgrade 阅读全文
摘要:
创建bat文件: 启动nacos和redis @echo off start cmd /k "cd /d F:\jar\nacos-server-2.0.4\nacos\bin && .\startup.cmd -m standalone" start cmd /k "cd /d F:\jar\Re 阅读全文
摘要:
在 Ubuntu 中,可以使用 ufw(Uncomplicated Firewall)来管理防火墙。以下是在 Ubuntu 中查看、开启、关闭和永久关闭防火墙的方法: 1. 查看防火墙状态: 要查看 Ubuntu 中 ufw 防火墙的状态,可以执行以下命令: sudo ufw status 这将显示 阅读全文
摘要:
vscode控制台执行: cmdlet set-ExecutionPolicy Remotesigned 阅读全文