摘要:
int a = 1; int b = 3; String.format("%.2f",a*100d/b/100); 阅读全文
摘要:
A.compareTo(B) A>B >return 1 A=B >return 0 A<B >return -1 阅读全文
摘要:
public static void writeWorkbookToResponse(HttpServletResponse response, Workbook wb, String fileName){ response.setContentType("application/vnd.openx 阅读全文
摘要:
poi依赖 <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>4.1.2</version> </dependency> public static void main(Strin 阅读全文
摘要:
reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve taskkill /f /im explorer.exe start explorer.exe 阅读全文
摘要:
su - oracle; sqlplus; ./shutdown.sh; ps -ef|grep tomcat-* kill -9 pid; ./startup.sh; 解压到当前文件夹 unzip -o *.zip; 根据文件名查看路径 find / -name 'redis-cli'; 无密码进 阅读全文
摘要:
dense_rank() over(partition by PP.isNewAppointed order by S.FINAL_SCORE desc) 根据isNewAppointed分组 根据FINAL_SCORE进行倒序排序 此字段的值由dense_rank()生成 dense_rank() 阅读全文
摘要:
List<T> list = JSON.parseArray(jsonStr, T.class); 阅读全文
摘要:
Mybatis内置的ExecutorType有3种,SIMPLE、REUSE、BATCH; 默认的是simple,该模式下它为每个语句的执行创建一个新的预处理语句,单条提交sql;而batch模式重复使用已经预处理的语句,并且批量执行所有更新语句,显然batch性能将更优;但batch模式也有自己的 阅读全文
摘要:
@Component public class ImplementSubformFactory implements ApplicationContextAware { private static Map<String, ImplementSubformService> productMap = 阅读全文