摘要: 目标 高性能,性能优先 高并发,处理大量请求不出错 处理复杂业务,erp等,复杂流程 减少研发工作量,轮子,代码工具 提高研发质量,代码review等 中间件 mysql,innodb redis kafka elasticsearch dubbo springcloud 监控 新技术 jdk17 阅读全文
posted @ 2023-02-02 17:25 lin_0110 阅读(14) 评论(0) 推荐(0) 编辑
摘要: vue项目正常启动 配置jsdebug 配置的url就是前端的页面地址 参考:http://www.kailing.pub/article/index/arcid/303.html 3. 启动jsdebug 4. 最终效果 注意 启动debug后会启动浏览器的一个页面,实测只有在默认打开的那个浏览器 阅读全文
posted @ 2023-05-17 17:57 lin_0110 阅读(795) 评论(1) 推荐(0) 编辑
摘要: idea编写vue项目,老提示Method expression can be null or undefined 更改idea的inspection设置 去掉Type Mismatch的校验,问题解决 阅读全文
posted @ 2023-05-05 11:24 lin_0110 阅读(272) 评论(0) 推荐(0) 编辑
摘要: 共享的情况 父组件 <template lang=""> <div> <div class="greetings">按钮值:{{ num }}</div> <div> <button @click="num++">按钮</button> </div> <div> i am parent</div> 阅读全文
posted @ 2023-04-15 10:13 lin_0110 阅读(226) 评论(0) 推荐(0) 编辑
摘要: kafka 架构什么样 阅读全文
posted @ 2023-03-20 16:57 lin_0110 阅读(6) 评论(0) 推荐(0) 编辑
摘要: java类型转换方式 mapstruct 并不好用,代码臃肿,性能高一点 参考 https://blog.csdn.net/WX5991/article/details/121936717 阅读全文
posted @ 2023-03-15 20:33 lin_0110 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 字段相同 BeanUtils.copyProperties(item, dto); 字段不同 通过mapstruct,定义不同的字段名字 https://blog.csdn.net/weixin_55806809/article/details/125347999 阅读全文
posted @ 2023-03-14 17:43 lin_0110 阅读(192) 评论(0) 推荐(0) 编辑
摘要: mybatis-plus使用 参考:https://baomidou.com/pages/24112f/ 关键步骤: 引入pom包: <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter< 阅读全文
posted @ 2023-03-14 17:14 lin_0110 阅读(11) 评论(0) 推荐(0) 编辑
摘要: yapi 接口定义 mock postman 接口调用 MeterSphere 接口测试 功能测试 阅读全文
posted @ 2023-03-14 17:10 lin_0110 阅读(12) 评论(0) 推荐(0) 编辑
摘要: mybatis中的返回类嵌套一个list,如何实现? <resultMap id="CusMap" type="com.yang.webstarter.entity.SysUser"> <collection property="books" javaType="java.util.ArrayLis 阅读全文
posted @ 2023-03-08 18:22 lin_0110 阅读(145) 评论(0) 推荐(0) 编辑
摘要: SpringBoot集成jpa网上有很对jpa的介绍,但是都不是很全,这边根据公司的实际使用情况进行的总结。 JPA、Hibernate、Spring data jpa之间的关系主要参考https://my.oschina.net/u/3080373/blog/1828589 大家可以读一下这篇文章 阅读全文
posted @ 2023-02-27 16:47 lin_0110 阅读(145) 评论(0) 推荐(0) 编辑