A place to hold mainly reading notes, and some technical stuff occasionally. 这里主要是一些读书笔记、感悟;还有部分技术相关的内容。
目录[-]
如果是在 Linux
下开机自启一个服务相对比较简单,这次遇到一个需求是关于 Windows
开机自启的:
Windows
环境下开机自动运行一个 SpringBoot
服务;以下实现方法主要用到了 Windows
环境下基本的批处理脚本以及 VB
脚本(主要是为了控制黑窗口的隐藏,同时可以输出服务的日志信息)。
@echo off
D:
cd D:\Java\IdeaProjects\demo\target
java -jar demo-0.0.1-SNAPSHOT.jar >> log.log
Note:这里采用追加的方式将日志重定向写入到 log.log
文件。
为了控制黑窗口不显示,这里借助了 VB
的脚本语言,最后的参数0表示隐藏黑窗口。
CreateObject("Wscript. Shell").run "D:\Java\IdeaProjects\demo\target\demo.bat",0
对上一步中的 VB
脚本 startup-jar.vbs
右键创建快捷方式,然后将快捷方式放入以下目录,即可实现开机自启。
C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp
If you have any questions or any bugs are found, please feel free to contact me.
Your comments and suggestions are welcome!