Fork me on GitHub
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 80 下一页
摘要: SpringBoot+Mybatis jar包引入 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency 阅读全文
posted @ 2020-02-18 21:04 秋夜雨巷 阅读(734) 评论(0) 推荐(0) 编辑
摘要: 查询 userId 在数据库中为int类型 select * from userinfo where userId = 0 等于 select * from userinfo where userId = '' 容易出现bug 当id为int类型,根据id批量(逻辑)删除记录时。 update us 阅读全文
posted @ 2020-02-13 16:10 秋夜雨巷 阅读(748) 评论(0) 推荐(0) 编辑
摘要: 后台代码 重要的基础数据不能物理删除,用逻辑删除。 树形关系结构的,当下级分支有数据时,本级不能删除。 一对多关系,且多的存在依赖于一,那么删除一时需要验证一是否关联多(例如删除班级之前要先检查班级下面是否还存在学生)。 多对多关系,多对多关系需要第三张关系表,当删除某一个多时,可以通过关系表建立外 阅读全文
posted @ 2020-02-10 16:41 秋夜雨巷 阅读(290) 评论(0) 推荐(0) 编辑
摘要: 问题 安装过程中出现如下错误 错误1920未能启动服务“Office Software Protection Platform”(osppsvc)。 解决方案 win+R运行“ regedit ”,打开注册表 找到HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windo 阅读全文
posted @ 2020-01-15 21:04 秋夜雨巷 阅读(4206) 评论(0) 推荐(0) 编辑
摘要: 代码如下,把qq号码换成需要联系的QQ号即可。 <a href="tencent://message/?uin=qq号码&Site=Sambow&Menu=yes">QQ在线咨询</a> 阅读全文
posted @ 2020-01-14 15:36 秋夜雨巷 阅读(6167) 评论(0) 推荐(1) 编辑
摘要: 使用chkconfig命令实现开机自启动软件 阅读全文
posted @ 2020-01-14 09:02 秋夜雨巷 阅读(431) 评论(0) 推荐(0) 编辑
摘要: 问题 数据库中有数据的情况下,group by后发现having max查不到数据 改成这样写才可以. having的排序 1.from tab 2.where ... 3.group by ... 4.select ... 5.having ... 6.order by ... group by后 阅读全文
posted @ 2020-01-08 17:30 秋夜雨巷 阅读(3612) 评论(0) 推荐(0) 编辑
摘要: 简介 Apache HTTP Server(简称Apache),是Apache软件基金会的一个开放源代码的网页服务器,可以在大多数电脑操作系统中运行,由于其具有的跨平台性和安全性,被广泛使用,是最流行的Web服务器端软件之一。 它快速、可靠并且可通过简单的API扩展,Perl/Python解释器可被 阅读全文
posted @ 2020-01-07 13:24 秋夜雨巷 阅读(1703) 评论(0) 推荐(0) 编辑
摘要: Google产品虽然要FQ,但是用起来香啊 Analytics https://analytics.google.com/ 分析各种用户访问数据 管理 -》 创建媒体资源 获取跟踪代码,将跟踪js代码放入博客的js中即可。 Adsense 谷歌广告 https://www.google.com/ad 阅读全文
posted @ 2020-01-06 13:00 秋夜雨巷 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 报错 解决方案 下载lib包 https://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html 替换jdk安装目录下 jre* \lib\security 中的 local_policy.jar 和 阅读全文
posted @ 2020-01-05 15:25 秋夜雨巷 阅读(1258) 评论(0) 推荐(0) 编辑
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 80 下一页