摘要: UML,全称Unified Modeling Language,统一建模语言。而UML图分为用例图、类图、对象图、状态图、活动图、时序图、协作图、构件图、部署图等9种图。 类图中有六种关系,分别是依赖关系、关联关系、聚合关系、组合关系、实现关系、泛化关系。 参考:https://blog.csdn. 阅读全文
posted @ 2023-12-22 22:52 wenbolwm 阅读(12) 评论(0) 推荐(0) 编辑
摘要: # 查看变更内容 $ git status # 添加所有 $ git add -A # 添加备注 $ git commit -m "XXXX" # 代码push $ git push origin master # 查看远程地址 $ git remote -v # 如果你的提交信息(commit m 阅读全文
posted @ 2023-05-31 11:31 wenbolwm 阅读(4) 评论(0) 推荐(0) 编辑
摘要: Jacoco Excludes: * 匹配零个或多个字符 ** 匹配零个或多个目录 ?匹配单个字符 <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <configuration> 阅读全文
posted @ 2023-03-22 21:10 wenbolwm 阅读(506) 评论(0) 推荐(0) 编辑
摘要: 一、登录生产机器 上传arthas-bin.zip ,上传路径自己定 rz 上传文件 unzip 解压zip包,ps:如果该命令不能使用,切换账号到root,执行:yum install -y unzipzip 二、arthas 使用 看到这个界面,成功启动arthas arthas使用过程中遇到中 阅读全文
posted @ 2022-05-05 21:29 wenbolwm 阅读(419) 评论(0) 推荐(0) 编辑
摘要: 1、List.contains方法的源码是用equals()比较的,也就是说比较的是地址,所以要在类中重写equals()方法. https://www.cnblogs.com/smallfa/news/2019/04/29/10790053.html 2、xxxxxxx.mirror.aliyun 阅读全文
posted @ 2021-05-07 10:54 wenbolwm 阅读(32) 评论(0) 推荐(0) 编辑
摘要: setInitialState({ ...initialState, currentUser: undefined }); ...initialState = {currentUser: {}, fetchUserInfo: {}, settings: {}} setInitialState({cu 阅读全文
posted @ 2020-11-27 10:36 wenbolwm 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 一般业务不要求全局有序,kafka只能保证同一个partition内消息有序,不能保证不同partition之间有序,因此业务只能充分利用单个partition内有序这个特点。 举一个数据同步的例子,假设订单表,每个订单是有状态的,我们要保证同一个订单的多次修改记录达到kafka里的顺序不能乱,我们 阅读全文
posted @ 2020-08-11 20:51 wenbolwm 阅读(100) 评论(0) 推荐(0) 编辑
摘要: vscode写react代码保存时代码会被格式化乱掉,解决方法:点击右下角的javaScript, 在弹出的选择框中, 输入选择JavascriptReact或者TypescriptReact 阅读全文
posted @ 2020-01-02 14:34 wenbolwm 阅读(886) 评论(0) 推荐(0) 编辑
摘要: 1、yarn: windows 下需要下载msi文件, 2、npm,node 安装绿色版本 3、cnpm安装:npm install -g cnpm --registry=https://registry.npm.taobao.org(解决了npm ERR! code: 'EPERM'问题) 4、使 阅读全文
posted @ 2019-11-29 10:49 wenbolwm 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 默认配置 Spring Boot默认提供静态资源目录位置需置于classpath下,目录名需符合如下规则: /static /public /resources /META-INF/resources http://blog.didispace.com/springbootweb/ Spring B 阅读全文
posted @ 2018-05-04 17:50 wenbolwm 阅读(294) 评论(0) 推荐(0) 编辑