部署jar包windows服务工具

网友投稿 723 2022-10-23

部署jar包windows服务工具

部署jar包windows服务工具

背景

某个周末一个线上项目因为服务器自动重启导致了系统挂了,我们是通过jenkins部署的jar包所以需要手动重启项目,解决问题后准备调换部署方式让项目随系统自动启动,试用tomcat后发现启动慢,并且日常开发springboot都是使用内置tomcat启动,如果要保持和部署方式保持一致(避免本地代码执行和部署方式不一致导致的bug),需要配置外部tomcat比较麻烦,所以决定还是以java -jar命令方式启动并注册为window服务

项目地址:https://gitee.com/code2roc/deploy-jar-util

环境依赖

windows系统 安装framework4.0 安装jdk配置环境变量

功能介绍

工具包含【服务名称】【jar包路径】【部署端口】【执行结果】【操作按钮】五个部分

服务名称

对应的就是安装后windows服务的名字

jar包路径

部署项目的jar文件物理路径

部署端口

默认为空不指定使用配置文件中端口,指定后使用自定义端口

执行结果

显示安装/卸载/启动/关闭服务适输出的操作日志

操作按钮

安装/卸载/启动/停止四个按钮对应相关windows服务的操作

服务安装后默认停止状态,需要手动启动,服务启动方式为自动

实现介绍

window服务安装

使用开源组件winsw(void btn_InstallService_Click(object sender, EventArgs e){string command = "deploy.exe install";StartCmd(AppDomain.CurrentDomain.BaseDirectory, command, FinishCommand);}public void StartCmd(String workingDirectory, String command, EventHandler FinsishEvent){Process p = new Process();p.StartInfo.FileName = "cmd.exe";p.StartInfo.WorkingDirectory = workingDirectory;p.StartInfo.UseShellExecute = false;p.StartInfo.RedirectStandardInput = true;p.StartInfo.RedirectStandardOutput = true;p.StartInfo.RedirectStandardError = true;p.StartInfo.CreateNoWindow = true;p.EnableRaisingEvents = true; // 启用Exited事件 p.Exited += FinsishEvent; // 注册进程结束事件 p.Start();p.StandardInput.WriteLine(command);p.StandardInput.WriteLine("exit");p.StandardInput.AutoFlush = true;string strOuput = p.StandardOutput.ReadToEnd();txt_Result.Text = strOuput;//等待程序执行完退出进程p.WaitForExit();p.Close();}

## 服务状态监控 通过引入System.ServiceProcess程序集调用服务相关api ```c# public void InitOpStatus() { btn_InstallService.Enabled = false; btn_StartService.Enabled = false; btn_UnstallService.Enabled = false; btn_StopService.Enabled = false; var serviceControllers = ServiceController.GetServices(); bool existservice = false; foreach (var service in serviceControllers) { if (service.ServiceName == txt_ServerName.Text) { existservice = true; break; } } if (existservice) { var server = serviceControllers.FirstOrDefault(service => service.ServiceName == txt_ServerName.Text); if (server.Status == ServiceControllerStatus.Running) { //服务运行中允许停止 btn_StopService.Enabled = true; } else { //服务未运行允许卸载和启动 btn_UnstallService.Enabled = true; btn_StartService.Enabled = true; } } else { //无此服务允许安装 btn_InstallService.Enabled = true; } }

启动日志显示

使用定时器,不断刷新deploylog\deploy.out.log日志文件

```c#System.Windows.Forms.Timer timer;public LogForm(){InitializeComponent();}

private void LogForm_Load(object sender, EventArgs e) { timer = new System.Windows.Forms.Timer(); //1秒间隔 timer.Interval = 1000; //执行事件 timer.Tick += (s, e1) => { RefreshLogContent(); }; //开始执行 timer.Start(); } public void RefreshLogContent() { string logPath = AppDomain.CurrentDomain.BaseDirectory + "deploylog\\deploy.out.log"; string logContent = ReadFileContent(logPath); SetTextCallback d = new SetTextCallback(SetText); this.txt_Log.Invoke(d, new object[] { logContent }); } public string ReadFileContent(string FileFullName) { if (File.Exists(FileFullName)) { System.IO.FileStream fs = new System.IO.FileStream(FileFullName, System.IO.FileMode.Open, FileAccess.Read, FileShare.ReadWrite); string FileContent = ""; try { int fsLen = Convert.ToInt32(fs.Length); byte[] heByte = new byte[fsLen]; int r = fs.Read(heByte, 0, heByte.Length); FileContent = System.Text.Encoding.Default.GetString(heByte); } catch (Exception e) { throw; } finally { fs.Close(); fs.Dispose(); } return FileContent; } else { return ""; } } delegate void SetTextCallback(string text); private void SetText(string text) { txt_Log.Text = ""; txt_Log.AppendText(text); } private void LogForm_FormClosed(object sender, FormClosedEventArgs e) { timer.Stop(); }

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:789. 数的范围
下一篇:布隆过滤器面试如何快速判断元素是否在集合里
相关文章

 发表评论

暂时没有评论,来抢沙发吧~