2018年8月17日
摘要:
1、去oracle官网下载 2、查看当前环境中安装了那些jdk,如果有那么卸载掉 安装好的CentOS会自带OpenJdk,用命令 java -version ,会有下面的信息: java version “1.6.0” OpenJDK Runtime Environment (build 1.6.
阅读全文
posted @ 2018-08-17 11:07
FeeCy
阅读(205)
推荐(0)
2018年8月13日
摘要:
mvn clean package compile -Dmaven.test.skip=true
阅读全文
posted @ 2018-08-13 13:13
FeeCy
阅读(1093)
推荐(0)
2018年8月10日
摘要:
;; A simple CPS transformer which does proper tail-call and does not ;; duplicate contexts for if-expressions. ;;author : Yin Wang(yw21@cs.indiana.edu
阅读全文
posted @ 2018-08-10 15:41
FeeCy
阅读(1878)
推荐(0)
摘要:
/** * 类描述:时间操作定义类 */public class DateUtils{ private static final Logger logger = Logger.getLogger(DateUtils.class); // ticks时间格式 //ticksToDatetime pub
阅读全文
posted @ 2018-08-10 13:38
FeeCy
阅读(147)
推荐(0)
摘要:
/** * SpringBoot上传文件 * @param request * @param path 文件路径 * @return */public static Object uploadFile(HttpServletRequest request, String path){ Multipa
阅读全文
posted @ 2018-08-10 13:13
FeeCy
阅读(1450)
推荐(0)
摘要:
public static boolean delFolder(String folderPath) { boolean flag = false; try { flag = delAllFile(folderPath); //删除完里面所有内容 String filePath = folderPa
阅读全文
posted @ 2018-08-10 13:09
FeeCy
阅读(140)
推荐(0)
摘要:
查看、添加、提交、删除、找回,重置修改文件 git help <command> # 显示command的help git show # 显示某次提交的内容 git show $id git co -- <file> # 抛弃工作区修改 git co . # 抛弃工作区修改 git add <fil
阅读全文
posted @ 2018-08-10 13:05
FeeCy
阅读(185)
推荐(0)