摘要: 本系统采用Spring+SpringMVC+Mybatis搭建,MySQL数据库,eclipse编译器,前端框架用的bootstrap。源码获取联系作者 QQ:493314251 整个系统分为前后台两部分,前台用户可以登录,注册,分类浏览房间,预订房间,查看订单,退订等功能。后台用户可以对房客进行管 阅读全文
posted @ 2020-01-14 16:49 xlisteven 阅读(1399) 评论(0) 推荐(0) 编辑
摘要: 记录一下scrapy爬取图片遇到的坑 目标站点:站长素材图片 https://sc.chinaz.com/tupian 我的核心源代码 # Define your item pipelines here # # Don't forget to add your pipeline to the ITE 阅读全文
posted @ 2023-08-17 11:05 xlisteven 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 我在这里整理了一些JAVA八股文面试资料以及咱们程序员常用的一些软件,我用的夸克网盘分享的上传下载都很快。说三遍:不是广告、不是广告、不是广告。 面试资料:https://pan.quark.cn/s/bef69df0a510 常用软件:https://pan.quark.cn/s/80a0a78e 阅读全文
posted @ 2022-11-18 09:58 xlisteven 阅读(90) 评论(0) 推荐(0) 编辑
摘要: SELECT DISTINCT `NAME`, `sex` FROM test_demo t WHERE sex = ( SELECT max( t1.sex ) FROM test_demo t1 WHERE t1.`name` = t.`name` ) 阅读全文
posted @ 2022-10-11 11:14 xlisteven 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 在使用git的时候出现这样的报错 是因为你的项目中没有.git文件,用git init初始化一下就可以了 阅读全文
posted @ 2022-04-19 17:34 xlisteven 阅读(32) 评论(0) 推荐(0) 编辑
摘要: Caused by: javax.net.ssl.SSLHandshakeException: No appropriate protocol (protocol is disabled or cipher suites are inappropriate) at sun.security.ssl. 阅读全文
posted @ 2022-04-07 09:07 xlisteven 阅读(785) 评论(0) 推荐(0) 编辑
摘要: mysql删除是报You can‘t specify target table ‘表名‘ for update in FROM clause DELETE FROM evaluation_classification WHERE id IN ( SELECT id FROM evaluation_c 阅读全文
posted @ 2022-01-19 17:46 xlisteven 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 新安装的MySQL5.7,今天运行springboot项目,完成一个新增操作报以下错误 The user specified as a definer ('root'@'%') does not exist 查阅很多资料得出结果:此种报错主要是针对访问视图文件引起的(没有权限) 所以需要数据库授权。 阅读全文
posted @ 2021-10-25 13:50 xlisteven 阅读(680) 评论(0) 推荐(0) 编辑
摘要: 使用npm安装eslint-config-airbnb,始终报以下错误 npm WARN eslint-config-airbnb@9.0.1 requires a peer of eslint@^2.9.0 but none was installed. npm WARN eslint-confi 阅读全文
posted @ 2020-09-14 13:56 xlisteven 阅读(1144) 评论(0) 推荐(0) 编辑
摘要: 错误 使用Navicat Premium 连接MySQL时出现如下错误: 原因 mysql8 之前的版本中加密规则是mysql_native_password,而在mysql8之后,加密规则是caching_sha2_password 解决 更改加密规则: mysql -uroot -ppasswo 阅读全文
posted @ 2020-07-06 09:29 xlisteven 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 今天远程帮别人调试代码,很久都没解决了,第一次遇见这个错误: java.lang.IncompatibleClassChangeError: Implementing class的问题原理解析。 最后都打算放弃了,才发现他装的jdk8的安装目录里面有这个druid的jar和 mysql的jar也不知 阅读全文
posted @ 2020-04-08 16:38 xlisteven 阅读(476) 评论(0) 推荐(0) 编辑