摘要: 问题: 解决方法 : 确认开启了protected mode,修改配置 开启protected mode则必须配置password [root@Admin /]# cd usr/local/redis/redis-5.0.7/src/ [root@Admin src]# ./redis-cli -p 阅读全文
posted @ 2020-09-05 11:59 等你在这里 阅读(564) 评论(0) 推荐(0) 编辑
摘要: 1、根据主键查询时候 shipperMapper.selectByPrimaryKey(uid),报错 是因为主键没有设置@Id 1、根据主键查询时候 shipperMapper.selectByPrimaryKey(uid),报错 是因为主键没有设置@Id 解决:在主键上设置@Id,错误解决 20 阅读全文
posted @ 2019-12-18 09:39 等你在这里 阅读(488) 评论(0) 推荐(0) 编辑
摘要: 1、首先打开cmd窗口,win+R键,输入cmd,然后更新数据 git config --global user.name "用户名" git config --global user.email "邮箱" 2、查看,显示配置的信息 git config --list 3、如果想清除账户信息,使用如 阅读全文
posted @ 2019-12-08 15:53 等你在这里 阅读(29665) 评论(0) 推荐(1) 编辑
摘要: Spring框架的学习路线 今天内容概述 案例一:使用Spring的IOC技术完成客户的保存功能 需求分析 技术分析之Spring框架的概述和入门 技术分析之什么是Spring框架 技术分析之Spring框架的特点 技术分析之Spring框架的IOC核心功能快速入门 入门总结之Spring框架中的工 阅读全文
posted @ 2019-05-19 23:36 等你在这里 阅读(225) 评论(0) 推荐(0) 编辑
摘要: //1、校验手机号 public static void phone(){ String phone="1733639`2256"; String regExp = "^1[3|4|5|7|8][0-9]{9}$"; Pattern p=Pattern.compile(regExp); p.matcher(phone).ma... 阅读全文
posted @ 2018-07-21 16:50 等你在这里 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 1.maven:安装及ecplise设置 出处:https://jingyan.baidu.com/article/6b1823098d4499ba58e159e1.html 2.maven下载 出处:https://www.cnblogs.com/zxg-6/p/7674219.html 3、ne 阅读全文
posted @ 2018-07-08 01:40 等你在这里 阅读(111) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/xueSpring/p/9214015.html https://www.cnblogs.com/xueSpring/p/9214015.html 阅读全文
posted @ 2018-06-24 23:55 等你在这里 阅读(158) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/Java3y/p/9221792.html 阅读全文
posted @ 2018-06-24 23:23 等你在这里 阅读(141) 评论(0) 推荐(0) 编辑
摘要: //1、冒泡排序 public static void maoPao(){ int[] x={1,24,45,56,6,98,90,3,2,65,3}; for (int i = 0; i < x.length-1; i++) { //外循环是轮数 for (int j = 0; j < x.len 阅读全文
posted @ 2018-06-24 17:36 等你在这里 阅读(112) 评论(0) 推荐(0) 编辑
摘要: this:本类对象的引用 super:父类存储空间的标识(父类对象的引用) 使用场景 成员变量: this.变量 本类的成员变量。 super.变量 父类的成员变量。 构造方法: this()本类的构造方法 super()父类的构造方法 成员方法: this.方法名()本类的成员方法 super.方 阅读全文
posted @ 2018-06-24 16:52 等你在这里 阅读(2273) 评论(0) 推荐(0) 编辑