上一页 1 2 3 4 5 6 7 ··· 39 下一页
摘要: 1,上传的项目(jar包)的数据库用户名 、密码 , 和服务器的数据库用户名、密码不一致 2,数据库的表结构没有创建 3, 宝塔 phpmyadmin 进不去 原因: 服务器没有放行888端口, 宝塔888不可用。 4,宝塔没有安装 redis =》 在软件商店里进行安装 4,springboot 阅读全文
posted @ 2021-09-28 16:08 武卡卡 阅读(669) 评论(0) 推荐(0) 编辑
摘要: 错误原因: 不小心删除了 .yml 导致了,项目所写的内容不能同步到编译出的文件中,之后项目中的任何修改或添加的内容不能同步到编译出的文件中 解决方法 : 文件项目下运行mvn idea:module命令,完成后将自动生成.iml文件 阅读全文
posted @ 2021-09-10 17:14 武卡卡 阅读(105) 评论(0) 推荐(0) 编辑
摘要: body{ -moz-user-select: none; /*火狐*/ -webkit-user-select: none; /*webkit浏览器*/ -ms-user-select: none; /*IE10*/ user-select: none;/*选中文字时避免出现蓝色背景*/ } 阅读全文
posted @ 2021-07-06 16:56 武卡卡 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 原因: mapper.xml 中的sql加上了分号。 <select id="search" resultType="***.Table"> select * from table; </select> 正常的分页查询语句为 : select * from table limit pageNum,p 阅读全文
posted @ 2021-07-01 15:18 武卡卡 阅读(193) 评论(0) 推荐(0) 编辑
摘要: var cards = document.querySelectorAll(".card"); for (let index = 0; index < cards.length; index++) { const card = cards[index]; card.addEventListener( 阅读全文
posted @ 2021-06-23 00:48 武卡卡 阅读(188) 评论(0) 推荐(0) 编辑
摘要: /* 移动端 */ @media all and (max-width: 768px) { } /* PC端 */ @media all and (min-width: 769px) { } 阅读全文
posted @ 2021-06-22 17:50 武卡卡 阅读(741) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2021-06-22 15:00 武卡卡 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 把项目目录下的.idea删除,再重启IDEA打开项目就行了 阅读全文
posted @ 2021-06-18 19:00 武卡卡 阅读(347) 评论(0) 推荐(0) 编辑
摘要: pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance 阅读全文
posted @ 2021-06-15 19:39 武卡卡 阅读(108) 评论(0) 推荐(0) 编辑
摘要: -Dfile.encoding=UTF-8 阅读全文
posted @ 2021-06-12 16:16 武卡卡 阅读(346) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 39 下一页