IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> spring boot executable方式部署项目,日志重定向到/dev/null -> 正文阅读

[Java知识库]spring boot executable方式部署项目,日志重定向到/dev/null

1 说明

官方文档:https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#deployment.installing

除了使用java -jar运行SpringBoot应用程序之外,还可以为Unix系统创建完全可执行的应用程序。

完全可执行的jar通过在文件的前面嵌入额外的脚本来工作。目前,一些工具不接受这种格式,所以可能不能总是使用这种技术。例如,jar -xf可能无法提取已完全可执行的jar或war。建议只在打算直接执行jar或war时才完全执行它,而不是使用java -jar运行它或将它部署到servlet容器中。

2 maven配置

添加如下打包配置,假如打包的jar名称:myapp.jar

<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <configuration>
        <executable>true</executable>
    </configuration>
</plugin>

此时,可以通过./myapp.jar来执行程序

3 添加 Unix/Linux 服务支持

通过使用 init.d 或 systemd, 将Spring-Boot应用程序作为Unix/Linux服务启动。

3.1 作为 init.d 服务安装

如果您配置了 Spring Boot 的 Maven 或 Gradle 插件以生成完全可执行的 jar,并且您不使用自定义的 embeddedLaunchScript,则您的应用程序可以用作 init.d 服务。为此,将 jar 软链接到 init.d 以支持标准的 start, stop, restartstatus 命令。

默认脚本支持以下功能:

  • 以拥有 jar 文件的用户身份启动服务
  • 使用 /var/run//.pid 跟踪应用程序的 PID
  • 将控制台日志写入 /var/log/.log

给予运行权限

chmod +x /opt/demo/myapp.jar

创建软链接

ln -s /opt/demo/myapp.jar /etc/init.d/myapp

至此,已经可以使用service 启动了

service myapp start|restart|stop|status

此时,默认会在/var/log/<appname>.log文件打印程序启动的信息

3.2 安装为systemd服务

新建一个systemd service脚本,这里命名为:myapp.service

vi /etc/systemd/system/myapp.service

内容

[Unit]
Description=myapp
Documentation=https://www.myapp.com
After=syslog.target

[Service]
User=root
ExecStart=/opt/demo/myapp.jar start
ExecReload=/opt/demo/myapp.jar restart
ExecStop=/opt/demo/myapp.jar stop
SuccessExitStatus=143
Restart=always

[Install]
# 多用户
WantedBy=multi-user.target

开机自启动

systemctl enable myapp

至此,可以使用systemctl来管理应用了

systemctl start|restart|stop|status myapp

4 定制化配置

程序支持使用.conf文件来配置一些运行参数,具体如下:

VariableDescription
MODEThe “mode” of operation. The default depends on the way the jar was built but is usually auto (meaning it tries to guess if it is an init script by checking if it is a symlink in a directory called init.d). You can explicitly set it to service so that the `stop
RUN_AS_USERThe user that will be used to run the application. When not set, the user that owns the jar file will be used.
USE_START_STOP_DAEMONWhether the start-stop-daemon command, when it is available, should be used to control the process. Defaults to true.
PID_FOLDERThe root name of the pid folder (/var/run by default).
LOG_FOLDERThe name of the folder in which to put log files (/var/log by default).
CONF_FOLDERThe name of the folder from which to read .conf files (same folder as jar-file by default).
LOG_FILENAMEThe name of the log file in the LOG_FOLDER (<appname>.log by default).
APP_NAMEThe name of the app. If the jar is run from a symlink, the script guesses the app name. If it is not a symlink or you want to explicitly set the app name, this can be useful.
RUN_ARGSThe arguments to pass to the program (the Spring Boot app).
JAVA_HOMEThe location of the java executable is discovered by using the PATH by default, but you can set it explicitly if there is an executable file at $JAVA_HOME/bin/java.
JAVA_OPTSOptions that are passed to the JVM when it is launched.
JARFILEThe explicit location of the jar file, in case the script is being used to launch a jar that it is not actually embedded.
DEBUGIf not empty, sets the -x flag on the shell process, allowing you to see the logic in the script.
STOP_WAIT_TIMEThe time in seconds to wait when stopping the application before forcing a shutdown (60 by default).

myapp.jar同一级目录下,创建一个myapp.conf的配置文件(名称与jar包同名)

# 将日志重定向到/dev/null,因为程序里已经自定义配置了日志打印
LOG_FOLDER=/dev
LOG_FILENAME=null
JAVA_OPTS="-Xmx256m -Xms256m -Dfile.encoding=utf-8"
RUN_ARGS="--spring.profiles.active=prod"
  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-07-03 10:36:15  更:2022-07-03 10:39:31 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 17:00:12-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码