开发中遇到的问题

开发中遇到的问题

一.Mybatis

1.链式SQL嵌套and,or

java 复制代码
 List<UserMeetDO> meets = userMeetMapper.selectList(new LambdaQueryWrapper<UserMeetDO>()
                        .eq(UserMeetDO::getMeetId, userMeetVo.getMeetId())
                        .and(wrapper -> wrapper
                                .and(w -> w.le(UserMeetDO::getStartTime, userMeetVo.getStartTime()).gt(UserMeetDO::getEndTime, userMeetVo.getStartTime()))
                                .or(w -> w.lt(UserMeetDO::getStartTime, userMeetVo.getEndTime()).ge(UserMeetDO::getEndTime, userMeetVo.getEndTime()))
                                .or(w -> w.ge(UserMeetDO::getStartTime,  userMeetVo.getStartTime()).le(UserMeetDO::getEndTime, userMeetVo.getEndTime()))
                        )
                );

2.xml

在xml中mybatis里认为0就是空字符串

if和foreach

xml 复制代码
 	 <if test="deptIds != null">
            and (
            sl.dept_id in
            <foreach collection="deptIds" open="(" close=")" separator="," item="id">
                #{id}
            </foreach>
            or sl.owner_id in
            <foreach collection="deptIds" open="(" close=")" separator="," item="id">
                #{id}
            </foreach>
            )
        </if>

3.分页

中规中矩

java 复制代码
 Page<Object> iPage = PageHelper.startPage(page, size);
 return PageResult.of(iPage,list);

手动分页

java 复制代码
 public List<PlanReceiveBo> getPage(List<PlanReceiveBo> list, int pageNum, int pageSize) {
        List<PlanReceiveBo> result = new ArrayList<>();
        if (list == null || list.isEmpty()) {
            return result;
        }
        int totalSize = list.size();
        int totalPage = (totalSize + pageSize - 1) / pageSize;
        if (pageNum < 1 || pageNum > totalPage) {
            return result;
        }
        int startIndex = (pageNum - 1) * pageSize;
        int endIndex = Math.min(startIndex + pageSize, totalSize);
        for (int i = startIndex; i < endIndex; i++) {
            result.add(list.get(i));
        }
        return result;
    }

二.SpringBoot

1.定时任务

@Scheduled(cron = "0 0 2 * * ?")

5位:* * * * * 分、时、天、月、周

6位:* * * * * * 秒、分、时、天、月、周

7位:* * * * * * * 秒、分、时、天、月、周、年

三.Java

1.常用的流

java 复制代码
  BigDecimal totalAmount = list.stream()
        .map(e -> e.getPlanReceiveAmount())
        .reduce(BigDecimal.ZERO, BigDecimal::add);

2.时间格式转换

LocalDate->LocalDateTime

java 复制代码
param.setApplyStartTime(listParam.getStartTime().atStartOfDay());
param.setApplyEndTime(listParam.getEndTime().atTime(23,59,59));

LocalDateTime->LocalDate

java 复制代码
LocalDateTime dateTime = LocalDateTime.of(2023, 11, 17, 10, 30);
LocalDate date = dateTime.toLocalDate();
System.out.println(date); // 输出 2023-11-17

3.JSON问题

如果为空就不返回该字段

java 复制代码
@JsonInclude(JsonInclude.Include.NON_EMPTY)

JSON的相互转换

java 复制代码
String jsonString = "{\"name\":\"name\", \"age\":20}";
SomeObject someObject = JSON.parseObject(jsonString, SomeObject.class);
SomeObject someObject = new SomeObject("name", 20);
String jsonString = JSON.toJSONString(someObject, SerializerFeature.PrettyFormat);
java 复制代码
		
JSONObject jsonObject = new JSONObject(jsonString);
JSONArray attributesArray = jsonObject.getJSONArray("attributes");
JSONObject attributes1 = attributesArray.getJSONObject(0);
String country = attributes1.getString("country");

四.Windows

1.杀死端口

bash 复制代码
netstat --ano | findstr <端口号>
bash 复制代码
taskkill /F /PID 39908

未完待续...

相关推荐
Warren981 分钟前
Java泛型
java·开发语言·windows·笔记·python·spring·maven
一只乔哇噻8 分钟前
Java,八股,cv,算法——双非研0四修之路day24
java·开发语言·经验分享·学习·算法
馨语轩17 分钟前
Springboot原理和Maven高级
java·开发语言·spring
海域云SeaArea_19 分钟前
Rustdesk中继服务器搭建(windows 服务器)
运维·服务器·windows
天天摸鱼的java工程师41 分钟前
面试必问的JVM垃圾收集机制详解
java·后端·面试
没有bug.的程序员1 小时前
《Java对象头与MarkWord结构:锁优化的底层内幕》
java·开发语言·锁优化·java对象头·markword
wangmengxxw1 小时前
SpringMVC-拦截器
java·开发语言·前端
kymjs张涛2 小时前
零一开源|前沿技术周刊 #10
java·前端·面试
张小洛2 小时前
Spring MVC 九大组件源码深度剖析(一):MultipartResolver - 文件上传的幕后指挥官
java·spring·mvc
weixin_307779132 小时前
ClickHouse Windows迁移方案与测试
linux·c++·数据仓库·windows·clickhouse