摘要:
【问题】 请求报500,一直以为是后台问题 【原因】 前端thymeleaf模板代码没写完整原因(既然用了就要写好格式) 【解决】 将用到thymeleaf标签代码补全,主要原因没用这个@{}补全th:href标签 <a th:href="@{/uploadmoment/mvmain}" title 阅读全文
摘要:
【问题】: 在windows上安装了个redis,然后配置这两个文件(主要是这个redis.windows.conf文件),改了端口,设置了局域网访问的ip,加了个密码。 然后双击redis-server.exe启动 发现端口号竟然没变 【原因】 仔细看才发现 原来读取的是这个配置文件 【解决】 看 阅读全文
摘要:
zip包解压 unzip xxx.zip 权限赋值 chmod 777 xxx 777代表所有权限 windows文件转linux文件 dos2unix xxx 查看log日志文件 tail -f xxx.log 阅读全文
摘要:
【问题】 使用Navicat连接mysql 然后报了这个错误 1146 【原因】 手贱删了某个自带的数据库 【解决方案】 cd /usr/local/mysql/bin ./mysql_upgrade -u root -p 输入密码就解决了 阅读全文
摘要:
linux防火墙没关 查看状态: systemctl status firewalld 禁用: systemctl stop firewalld 阅读全文
摘要:
问题 启动Nacos注册中心窗口秒关 原因 没配置`JAVA_HOME`环境变量JDK路径 或JDK多版本冲突 解决 配置`JAVA_HOME`环境变量 成功运行 阅读全文
摘要:
【问题】 安装docker出现的问题 GPG key retrieval failed: [Errno 12] Timeout on https://download.docker.com/linux/centos/gpg: (28, 'Operation timed out after 30001 阅读全文
摘要:
问题 原因 解决 在数据库连接配置url末尾加上防乱码UTF-8 ?useUnicode=true&characterEncoding=utf8 阅读全文
摘要:
所有题目答案都不完整,这些针对个人所整理的 SpringBoot有哪些核心注解和配置以及和spring的区别? https://www.cnblogs.com/lin02/p/11480535.html https://www.cnblogs.com/lin02/p/11469541.html sp 阅读全文
摘要:
1.导入发送邮件的依赖 <!-- 发送邮件jar包--> <!--spring支持--> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <vers 阅读全文