摘要: 1.Jedis的使用 1.设置依赖 <!--导入jedis的包--><dependencies> <!-- https://mvnrepository.com/artifact/redis.clients/jedis --> <dependency> <groupId>redis.clients</ 阅读全文
posted @ 2022-05-18 08:56 面向机器编程 阅读(228) 评论(0) 推荐(0) 编辑
摘要: Git安装完成之后在任意文件夹下右键点击Git Bash here开始设置 1.Git 全局设置 设置用户信息 git config --global user.name "rzp" git config --global user.email "rzp@handsome.cn" 查看配置信息 gi 阅读全文
posted @ 2022-05-17 11:16 面向机器编程 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 相关设置见我的另一篇文章Spring设置https://www.cnblogs.com/face-to-machine-program/articles/16142167.html 这里参考了另一篇博客https://www.cnblogs.com/anenyang/p/15633565.html 阅读全文
posted @ 2022-05-16 16:04 面向机器编程 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 为了项目使用Vue,对Vue相关前期安装及使用进行整理 参考了以下博客: https://blog.csdn.net/m0_67495466/article/details/124133275 https://blog.csdn.net/weixin_48307978/article/details 阅读全文
posted @ 2022-05-15 10:59 面向机器编程 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 1.订阅发布 1)测试 订阅端: 192.168.72.128:6379> subscribe rzpReading messages... (press Ctrl-C to quit)1) "subscribe"2) "rzp"3) (integer) 1 //等待读取推送的消息1) "messa 阅读全文
posted @ 2022-05-13 11:56 面向机器编程 阅读(75) 评论(0) 推荐(0) 编辑
摘要: Web工程搭建参考:https://www.bilibili.com/video/BV1Qf4y1T7Hx?p=91&vd_source=bb2ac23e78d52dd5cfbc35180c451a2d BS结构: 参考:https://www.bilibili.com/video/BV1Z3411 阅读全文
posted @ 2022-05-12 23:13 面向机器编程 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 1. Unit对于大小写不敏感 2.include 可以添加专属配置文件 3.network 绑定远程服务器IP 保护模式开启及端口号 4.通用General 以守护进程的方式运行,默认为no,自己可以开启为yes 如果在守护进行方式运行,则需要指定进程文件 日志 日志的文件名定义 默认的数据库数量 阅读全文
posted @ 2022-04-29 16:49 面向机器编程 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 一、黑马编程-瑞吉外卖 1.准备工作 1)通过SQL脚本导入编写好的SQL语句,创建数据库 2)建立Maven工程,导入必要的POM依赖 3)编写启动类,注意添加@SpringBootApplication 其中注解@Slf4j是lombok下的注解,用于添加log信息 4)将前端相关文件导入(主要 阅读全文
posted @ 2022-04-28 12:35 面向机器编程 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 第一版 页面定制CSS代码 皮肤darkgreentrip /*生成博客目录的CSS*/ #uprightsideBar{ font-size:14px; font-family:Arial, Helvetica, sans-serif; text-align:left; position:fixe 阅读全文
posted @ 2022-04-22 15:29 面向机器编程 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 一、Spring 二、SpringMVC 首先注意相关依赖引入,同时注意记住在project structure中添加Lib文件夹导入依赖 <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet 阅读全文
posted @ 2022-04-21 22:29 面向机器编程 阅读(64) 评论(0) 推荐(0) 编辑