11 2020 档案

摘要:🔴在IDEA中启动SpringBoot项目时JRebel出现的错误: Class 'org.springframework.boot.env.PropertiesPropertySourceLoader' could not be processed by org.zeroturnaround.j 阅读全文
posted @ 2020-11-29 22:19 Felix_Openmind 阅读(1301) 评论(1) 推荐(0) 编辑
摘要:Deployment diagrams are used to visualize the topology(拓扑)of the physical components of a system, where the software components are deployed. Deployme 阅读全文
posted @ 2020-11-29 18:53 Felix_Openmind 阅读(466) 评论(0) 推荐(0) 编辑
摘要:💨Component diagrams are used to model the physical aspect of a system. What are these physical aspects? Physical aspects are the elements such as exe 阅读全文
posted @ 2020-11-29 18:16 Felix_Openmind 阅读(454) 评论(0) 推荐(0) 编辑
摘要:Object diagrams are derived from class diagrams so object diagrams are dependent upon class diagrams. Object diagrams represent an instance of a class 阅读全文
posted @ 2020-11-28 23:04 Felix_Openmind 阅读(597) 评论(0) 推荐(0) 编辑
摘要:Class diagram is a static diagram which represents the static view of an application. Class Diagram is composed of attributes、methods、association、cons 阅读全文
posted @ 2020-11-26 22:28 Felix_Openmind 阅读(427) 评论(0) 推荐(0) 编辑
摘要:Capturing the dynamic behavior of a system.(dynamic behavior refers to the behavior of the system when it is running/operating. use case diagram is dy 阅读全文
posted @ 2020-11-25 20:29 Felix_Openmind 阅读(442) 评论(0) 推荐(0) 编辑
摘要:REST指的是一组架构约束条件和原则。 REST方面的知识主要两个方面: 一、资源的表述(资源与URI) REST架构围绕的核心:资源 eg: 用户个人信息、优惠套餐 资源具有唯一标识(URI = URL +URN) URI = Unified Resource Identifier URL = U 阅读全文
posted @ 2020-11-25 11:29 Felix_Openmind 阅读(165) 评论(0) 推荐(0) 编辑
摘要:mvc框架由model,view,controller组成,执行流程一般是:在controller访问model获取数据,通过view渲染页面。 参考链接: https://blog.csdn.net/qq_34339493/article/details/86479991?utm_medium=d 阅读全文
posted @ 2020-11-25 10:56 Felix_Openmind 阅读(310) 评论(0) 推荐(0) 编辑
摘要:refid用作形容词,基本意思是“简单的,易懂的”,侧重于事物不复杂,易于迅速解决或很快被头脑接受 参考链接: https://blog.csdn.net/kylecoder/article/details/79466676 refid使用 1、首先定义一个sql标签,一定要定义唯一id <sql 阅读全文
posted @ 2020-11-25 10:55 Felix_Openmind 阅读(603) 评论(0) 推荐(0) 编辑
摘要:1、 link标签的href属性 2、 script标签的src属性 3、 img标签的src属性 4、 ajax发送请求 5、 表单提交发送请求 6、 a标签的href发送请求 7、 iframe的src属性发送请求 阅读全文
posted @ 2020-11-25 10:54 Felix_Openmind 阅读(501) 评论(0) 推荐(0) 编辑
摘要:前后端分离概念理解 参考链接🔗: https://www.zhihu.com/question/28207685/answer/575863155?utm_source=qq&utm_medium=social&utm_oi=820027810843357184 任何事物的存在都有其必然性、合理性 阅读全文
posted @ 2020-11-25 10:53 Felix_Openmind 阅读(436) 评论(0) 推荐(0) 编辑
摘要:Mybatis开发过程中经常遇到Mapped Statements collection already contains value for xxx 这种错误。字面意思是说mapper中存在id重复的值,比如说同一个xml文件中有两个id为xxx的方法。这种经常是copy已有代码的时候忘了改id导 阅读全文
posted @ 2020-11-25 10:51 Felix_Openmind 阅读(482) 评论(0) 推荐(0) 编辑
摘要:💊Thymeleaf相关配置 #thymeleaf start spring.thymeleaf.mode=HTML spring.thymeleaf.encoding=UTF-8 spring.thymeleaf.content-type=text/html #开发时关闭缓存,不然没法看到实时页 阅读全文
posted @ 2020-11-15 23:13 Felix_Openmind 阅读(1515) 评论(0) 推荐(0) 编辑
摘要:项目布局 注意事项 🔴 working directory要明确(参考连接: https://www.cnblogs.com/ming-blogs/p/11032450.html) 🔴 路径补充要正确 Maven依赖 <dependencies> <!-- SpringBoot整合JSP sta 阅读全文
posted @ 2020-11-14 15:31 Felix_Openmind 阅读(133) 评论(0) 推荐(0) 编辑
摘要:![](https://img2020.cnblogs.com/blog/2104219/202011/2104219-20201113230352584-2119994951.png) 阅读全文
posted @ 2020-11-13 23:03 Felix_Openmind 阅读(58) 评论(0) 推荐(0) 编辑
摘要:![](https://img2020.cnblogs.com/blog/2104219/202011/2104219-20201112205810811-1206931042.png) 阅读全文
posted @ 2020-11-12 20:58 Felix_Openmind 阅读(1630) 评论(0) 推荐(0) 编辑
摘要:####🔴TTL(Time To Live) : 指定IP包被路由器丢弃之前允许通过的最大网段数量。 TTL是IPv4报头的一个8 bit字段。注意:TTL与DNS TTL有区别。二者都是生存时间,前者指ICMP包的转发次数(跳数),后者指域名解析信息在DNS中的存在时间。 ####🔵DNS T 阅读全文
posted @ 2020-11-12 15:57 Felix_Openmind 阅读(753) 评论(0) 推荐(0) 编辑
摘要:Redis安装包下载路径: https://github.com/tporadowski/redis/releases 解压 安装 测试使用 redis-cli -h 127.0.0.1 -p 6379 -a "mypass" 阅读全文
posted @ 2020-11-12 12:42 Felix_Openmind 阅读(67) 评论(0) 推荐(0) 编辑
摘要:Postman + RESTful API参数提交 Postman传递日期类型数据 阅读全文
posted @ 2020-11-11 21:50 Felix_Openmind 阅读(86) 评论(0) 推荐(0) 编辑
摘要:🐷 IDEA中 🐷postman中 Content-Type application/x-www-form-urlencoded; charset=UTF-8 Accpet text/plain;charset=UTF-8 阅读全文
posted @ 2020-11-10 22:52 Felix_Openmind 阅读(7757) 评论(0) 推荐(0) 编辑
摘要:MySQL data下 frm、MYD、MYI、OPT文件作用 *.frm 表定义, 描述表结构的文件 *.MYD 保存表的数据记录、数据信息文件是表的数据文件 *.MYI 索引信息文件,是表数据文件中任何索引的数据树 *.opt 记录数据库的选项,数据库的字符集设置 如果采用独立表存储模式,还会产 阅读全文
posted @ 2020-11-10 17:05 Felix_Openmind 阅读(755) 评论(0) 推荐(0) 编辑
摘要:学问勤中得,萤窗万卷书 初级客户端实战 实用ES服务,首先获取一个ES客户端。(创建一个连接🔗到集群的传输客户端对象) 初级客户端初始化 🔰初级客户端的主要功能: 跨可用节点的负载均衡 节点故障和特定响应代码时的故障转移 失败连接的惩罚机制。判断一个失败节点是否重试,取决于客户端连接时连接失败的 阅读全文
posted @ 2020-11-10 13:45 Felix_Openmind 阅读(1030) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-11-10 12:56 Felix_Openmind 阅读(1146) 评论(0) 推荐(1) 编辑
摘要:CountDown n. 倒数 latch n. 门闩 latch on 占有抓住、理解 one the latch 关着但不上锁 She latch on to your notion. 她理解你的意见。 To open the gate, lift up the latch。要打开大门,先把门闩 阅读全文
posted @ 2020-11-10 10:04 Felix_Openmind 阅读(109) 评论(0) 推荐(0) 编辑
摘要:The PostConstruct annotation is used on a method that needs to be executed after dependency injection is done to perform any initialization 主要用于依赖注入之后 阅读全文
posted @ 2020-11-09 19:55 Felix_Openmind 阅读(243) 评论(0) 推荐(0) 编辑
摘要:Elasticsearch 前传 介绍搜索技术发展史和基本知识以及搜索引擎基本原理 搜索技术发展史 💠搜索引擎的5个阶段 FTP文件检索阶段 分类目录导航阶段 文本相关信检索阶段 网页链接分析和用户意图识别阶段 Elasticsearch简介 💨Elasticsearch就是一个用于数据搜索、分 阅读全文
posted @ 2020-11-09 16:20 Felix_Openmind 阅读(794) 评论(0) 推荐(0) 编辑
摘要:参考连接如下: https://jingyan.baidu.com/article/fa4125ac0f162e28ac70922a.html https://www.cnblogs.com/laoshuai/p/12449759.html https://www.cnblogs.com/bachl 阅读全文
posted @ 2020-11-05 17:53 Felix_Openmind 阅读(905) 评论(0) 推荐(0) 编辑
摘要:Tomcat安装 Tomcat安装路径:Apache Tomcat 将Tomcat安装文件上传到服务器 解压并安装: tar -zxvf apache-tomcat-9.0.39.tar.gz 重命名所安装的文件: 配置环境变量 更改端口 参考连接🔗:https://blog.csdn.net/f 阅读全文
posted @ 2020-11-04 18:01 Felix_Openmind 阅读(150) 评论(0) 推荐(0) 编辑
摘要:Java安装 Java下载路径:Java SE Development Kit 8u271 安装选择 将下载的安装文件上传到服务器 解压安装命令: [root@openmind dev_tools]# tar -zxvf jdk-8u202-linux-x64.tar.gz 修改安装后jdk名称: 阅读全文
posted @ 2020-11-04 17:24 Felix_Openmind 阅读(71) 评论(0) 推荐(0) 编辑
摘要:MySQL安装 MySQL下载: MySQL Community Server (Archived Versions) Download 下载 默认下载全部MySQL组件 解压 上传到服务器 解压并安装 [root@openmind dev_tools]# rpm -ivh MySQL-server 阅读全文
posted @ 2020-11-04 16:54 Felix_Openmind 阅读(101) 评论(0) 推荐(0) 编辑

*{cursor: url(https://files-cdn.cnblogs.com/files/morango/fish-cursor.ico),auto;}
点击右上角即可分享
微信分享提示