会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
wenbolwm
渴望提高.net技术的青年,将.net做到我能力的极致,一个人只能做好那么很少的几件事情。
博客园
首页
新随笔
联系
订阅
管理
2023年12月22日
UML 用例关系(包含、扩展、泛化)与 UML类图关系(依赖、关联、聚合、组合、泛化)
摘要: UML,全称Unified Modeling Language,统一建模语言。而UML图分为用例图、类图、对象图、状态图、活动图、时序图、协作图、构件图、部署图等9种图。 类图中有六种关系,分别是依赖关系、关联关系、聚合关系、组合关系、实现关系、泛化关系。 参考:https://blog.csdn.
阅读全文
posted @ 2023-12-22 22:52 wenbolwm
阅读(240)
评论(0)
推荐(0)
2023年5月31日
git常用命令
摘要: # 查看变更内容 $ 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
阅读(12)
评论(0)
推荐(0)
2023年3月22日
Jacoco Excludes
摘要: Jacoco Excludes: * 匹配零个或多个字符 ** 匹配零个或多个目录 ?匹配单个字符 <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <configuration>
阅读全文
posted @ 2023-03-22 21:10 wenbolwm
阅读(793)
评论(0)
推荐(0)
2022年5月5日
生产环境Arthas使用
摘要: 一、登录生产机器 上传arthas-bin.zip ,上传路径自己定 rz 上传文件 unzip 解压zip包,ps:如果该命令不能使用,切换账号到root,执行:yum install -y unzipzip 二、arthas 使用 看到这个界面,成功启动arthas arthas使用过程中遇到中
阅读全文
posted @ 2022-05-05 21:29 wenbolwm
阅读(501)
评论(0)
推荐(0)
2021年5月7日
知识点记录
摘要: 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
阅读(34)
评论(0)
推荐(0)
2020年11月27日
ES6 对象的扩展运算符(...)用于取出参数对象的所有可遍历属性,拷贝到当前对象之中
摘要: setInitialState({ ...initialState, currentUser: undefined }); ...initialState = {currentUser: {}, fetchUserInfo: {}, settings: {}} setInitialState({cu
阅读全文
posted @ 2020-11-27 10:36 wenbolwm
阅读(340)
评论(0)
推荐(0)
2020年8月11日
有序消息
摘要: 一般业务不要求全局有序,kafka只能保证同一个partition内消息有序,不能保证不同partition之间有序,因此业务只能充分利用单个partition内有序这个特点。 举一个数据同步的例子,假设订单表,每个订单是有状态的,我们要保证同一个订单的多次修改记录达到kafka里的顺序不能乱,我们
阅读全文
posted @ 2020-08-11 20:51 wenbolwm
阅读(107)
评论(0)
推荐(0)
2020年1月2日
vscode react 保存时代码乱掉
摘要: vscode写react代码保存时代码会被格式化乱掉,解决方法:点击右下角的javaScript, 在弹出的选择框中, 输入选择JavascriptReact或者TypescriptReact
阅读全文
posted @ 2020-01-02 14:34 wenbolwm
阅读(918)
评论(0)
推荐(0)
2019年11月29日
npm cnpm node yarn
摘要: 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
阅读(116)
评论(0)
推荐(0)
2018年5月4日
spring boot Thymeleaf
摘要: 默认配置 Spring Boot默认提供静态资源目录位置需置于classpath下,目录名需符合如下规则: /static /public /resources /META-INF/resources http://blog.didispace.com/springbootweb/ Spring B
阅读全文
posted @ 2018-05-04 17:50 wenbolwm
阅读(301)
评论(0)
推荐(0)
下一页
公告