JAVA
文章平均质量分 57
上尤流苏
有一点理想
展开
-
内存分页,list或者set结果分页
在一些系统接口对接过程中,往往需要调用别人的接口并进行封装,但是返回的数据量又特别大,前端要求分页显示,这时只能将数据聚合后,在内存中进行分页。pageSize 每页数量(最小 1,最大 100)pageNo 页码(从 1 开始).........原创 2022-08-16 15:57:41 · 675 阅读 · 2 评论 -
junit-vintage-engine和junit-jupiter-engine之间的区别?
通过Spring Initializr生成的SpringBoot项目spring-boot-starter-test 都会排除 junit-vintage-engine依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId></artifactId> <scope>test</scope>原创 2021-03-17 15:35:27 · 6204 阅读 · 2 评论 -
“You are not allowed to push code to protected branches on this project.”
问题描述代码提交到Git上,我可以正常push代码, 但是同事无法push,并提示报错“You are not allowed to push code to protected branches on this project.”问题定位登录gillab查看项目管理者身份,我的身份是Maintainers同事的身份是Developers问题解决Since GitLab 9.0Project: “Settings” -> “Repository” -> scroll down t原创 2021-03-02 18:11:55 · 28249 阅读 · 0 评论 -
java虚拟机参数 -D、-X和-XX的区别
JVM配置参数之(-D、-X、-XX的区别)最近在学习jvm调优相关的内容, 一直有一个疑问,为什么有些参数是以-X开头的,有些是以-XX开头的,还有-D开头的?通过查询资料、总结如下-XX说明:标准选择(Standard Options)这些是 JVM 的所有实现都支持的最常用的选项。These are the most commonly used options that are supported by all implementations of the JVM.示例:例如以原创 2021-01-21 14:08:24 · 4230 阅读 · 1 评论 -
int和Integer(== 和 equals的区别)
本篇文章先从一道题目开始 int a = 100; Integer b = 100; System.out.println(a == b); // true Integer a1 = 101; Integer b1 = 101; System.out.println(a1 == b1); // true Integer a2 = 200; Integer b2 = 200; System.out.println(a2 == b2);原创 2021-01-14 16:26:01 · 605 阅读 · 0 评论