随笔 - 388
文章 - 1
评论 - 31
阅读 -
94万
12 2019 档案
linux下转换windows文件格式,启动脚本报错问题解决
摘要:linux下转换windows文件格式为unix sed -i 's/\r//' 转化为unix格式 spring boot架包在linux中启动脚本 #!/bin/bash source /etc/profile debug=' -Xdebug -Xrunjdwp:server=y,transpo
阅读全文
Lucene学习笔记
摘要:https://www.cnblogs.com/xiaobai1226/p/7652093.html https://blog.csdn.net/weixin_42633131/article/details/82873731
阅读全文
数据库排序实现方法
摘要:对于数据库中已经存在的数据,根据查询条件,将sort字段按照查询序号排序。 SELECT @t:=0; update organization_info set sort=(@t:=@t+1) where org_area_code=#{orgAreaCode} and is_valid=1 ORD
阅读全文
IDEA 热启动,每次更改代码后不用重启服务
摘要:1、ctrl+Shift+Alt+/,选择Registry 2、勾选 compiler.automake.allow.when.app.running(可能不按首字母排序,可以多找找) 3、Setting >Compiler >勾选Build project automatically 4、pom.
阅读全文