admin 管理员组文章数量: 887021
SpringBoot项目部署在Linux服务器上是非常简单的,直接运行就可以。但是有的时候我们需要将SpringBoot项目部署在windows服务器上,那么如何部署了?Spring官方推荐我们使用winsw在windwos服务器上运行SpringBoot项目。
winsw安装和配置
首先,在github上下载WinSW.NET4.exe和sample-minimal.xml文件,下载地址如下:
https://github.com/winsw/winsw/releases/tag/v2.11.0
下载完后,我们开始进行项目配置,这里我们以SpringBoot打包成jar包的形式为例,将打包后的文件命名为HelloSppring_Service.jar,将刚刚下载的WinSW.NET4.exe和sample-minimal.xml文件分别命名为HelloSppring_Service.exe和HelloSppring_Service.xml,将三个文件放到同一个文件夹下,如图所示
创建完文件后,我们需要配置HelloSppring_Service.xml,如图所示
<service>
<!-- ID of the service. It should be unique across the Windows system-->
<id>HelloSppring_Service</id>
<!-- Display name of the service -->
<name>HelloSppring_Service Service (powered by WinSW)</name>
<!-- Service description -->
<description>This service is a service created from a minimal configuration</description>
<!-- Path to the executable, which should be started -->
<executable>java</executable>
<!-- 指定启动的Jar及环境 -->
<arguments>-jar HelloSppring_Service.jar</arguments>
<!-- 开机启动 -->
<startmode>Automatic</startmode>
<!-- 日志配置,项目中以及配置了logback,所以在这里就不输出日志了 -->
<logmode>none</logmode>
</service>
注意java中配置java前提是需要配置好环境变量,如没有配置则需要在此处配置指定jdk路径,到这里配置基本上已完成。
服务
winsw本质上是在windows服务器上创建一个运行SpringBoot项目的服务,类似.NET项目发布常用的IIS服务,通过服务来运行相关进程。前面我们已经配置好了项目,启动命令窗并定位到当前文件夹目录,运行创建服务命名
创建服务
HelloSppring_Service.exe install
创建完成后我们会在系统的管理-服务中看到当前创建服务,则说明服务创建成功,下一步启动服务,我们可以直接在服务管理中启动/停止/删除服务,也可以通过命令启动/停止/删除服务。
启动服务
net start HelloSppring_Service
停止服务
net stop HelloSppring_Service
删除服务
HelloSppring_Service.exe uninstall
如需要更新jar包,停止服务后直接替换掉对应的.jar包再重新启动服务
本文标签: 器上 快速 简单 项目 SpringBoot
版权声明:本文标题:SpringBoot项目如何简单快速部署Windows服务器上 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1726719381h1018094.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论