Java封装jar包对外提供可执行文件
摘要:编写Main方法,封装jar包 1、编写Main方法 具体项目结构如下: 2、通过idea可以快速进行Main方法的jar包封装,具体步骤可以参考 https://blog.csdn.net/yuang12345/article/details/90293013 https://blog.csdn.
阅读全文
posted @
2019-10-30 10:07
@ 小浩
阅读(1560)
推荐(0) 编辑
crontab定时任务接入
摘要:# 查看 $ crontab -l # 创建 $ crontab -e # 每分钟输出一次当前时间 * * * * * echo `date` >> /demo.log # 查看定时 $ cat /etc/crontab SHELL=/bin/bash PATH=/sbin:/bin:/usr/sb
阅读全文
posted @
2019-10-30 09:58
@ 小浩
阅读(186)
推荐(0) 编辑
idea在使用git clone 时出现Filename too long
摘要:idea在使用git clone 时出现Filename too long的报错信息,使用如下命令就可以解决该问题:在 git bash命令模式下,运行命令 git config --global core.longpaths true 1 参考链接:https://blog.csdn.net/ta
阅读全文
posted @
2019-10-29 20:57
@ 小浩
阅读(1724)
推荐(0) 编辑