摘要:
/* * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, 阅读全文
摘要:
由于在mybatis框架的xml中<= , >=解析会出现问题,编译报错,所以需要转译第一种写法: 原符号 < <= > >= & ’ "替换符号 < <= > >= & ' "例如:sql如下: unix_timestamp(target.mc_ 阅读全文
摘要:
算法一:分治法 基本概念 1.把一个复杂的问题分成两个或更多的相同或相似的子问题,再把子问题分成更小的子问题……直到最后子问题可以简单的直接求解,原问题的解即子问题的解的合并。 2.分治策略是对于一个规模为n的问题,若该问题可以容易地解决(比如说规模n较小)则直接解决,否则将其分解为k个规模较小的子 阅读全文
摘要:
package org.springblade.desk.utils; import org.apache.http.client.ResponseHandler; import org.apache.http.client.methods.HttpGet; import org.apache.ht 阅读全文
摘要:
package org.springblade.flow.engine.listener; import org.flowable.engine.delegate.DelegateExecution; import org.springframework.stereotype.Component; 阅读全文
摘要:
//list转long数组List<Long> list = new ArrayList<>(); Long[] skuIds = list.toArray(new Long[list.size()]); //list转string数组 List<String> list = new ArrayLi 阅读全文