上一页 1 2 3 4 5 6 7 ··· 16 下一页
摘要: demo ``` public class OTest { static Map seen = new ConcurrentHashMap(16); public static void main(String[] args) { List userRoleList = new ArrayList( 阅读全文
posted @ 2023-08-11 14:09 倔强的老铁 阅读(156) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/c5fzlEvovHX1nJHfhpaSEA 阅读全文
posted @ 2023-08-04 18:49 倔强的老铁 阅读(6) 评论(0) 推荐(0) 编辑
摘要: mybatis-plus-generator-ui可视化生成mybatis plus+MVC代码 https://github.com/davidfantasy/mybatis-plus-generator-ui 引入依赖 ``` com.github.davidfantasy mybatis-pl 阅读全文
posted @ 2023-07-19 15:27 倔强的老铁 阅读(51) 评论(0) 推荐(0) 编辑
摘要: **导出excel功能,报错。错误日志提示::The maximum length of cell contents (text) is 32767 characters** ![](https://img2023.cnblogs.com/blog/2197916/202307/2197916-20 阅读全文
posted @ 2023-07-14 09:37 倔强的老铁 阅读(3537) 评论(0) 推荐(0) 编辑
摘要: **需要校验的实体** ``` import com.alibaba.excel.annotation.ExcelIgnore; import com.alibaba.excel.annotation.ExcelProperty; import com.alibaba.excel.annotatio 阅读全文
posted @ 2023-06-30 16:16 倔强的老铁 阅读(1138) 评论(0) 推荐(0) 编辑
摘要: 多租户方案及对比 1、行级隔离 行隔离,存在数据融合,数据库性能是考研。 2、表级隔离 技术复杂度高,改造难度打。 3、库级隔离 数据隔离,数据安全性得到保证,单个租户数据量少,会造成资源浪费。 最终方案:库级隔离,动态数据源 Spring框架自带多数据源支持,提供AbstractRoutingDa 阅读全文
posted @ 2023-06-30 15:30 倔强的老铁 阅读(1875) 评论(0) 推荐(1) 编辑
摘要: https://blog.csdn.net/qq_69278945/article/details/127461465 先编写镜像构建文件Dockerfile vim Dockerfile FROM nginx:1.20 RUN echo '开心活泼的果冻' > /usr/share/nginx/h 阅读全文
posted @ 2023-06-30 11:28 倔强的老铁 阅读(10) 评论(0) 推荐(0) 编辑
摘要: docker当前下载的jenkins镜像是默认jdk11 网上搜了一堆帖子 执行过程 docker 下载安装jenkins docker run -d -p 8081:8080 -p 50001:50000 -v /usr/local/jenkins_home:/var/jenkins_home - 阅读全文
posted @ 2023-06-29 19:05 倔强的老铁 阅读(904) 评论(0) 推荐(1) 编辑
摘要: https://blog.csdn.net/awd15771131554/article/details/123759570 阅读全文
posted @ 2023-06-26 21:00 倔强的老铁 阅读(9) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/130984945 阅读全文
posted @ 2023-06-26 20:33 倔强的老铁 阅读(5) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 16 下一页