springboot 打成jar,后端进程方式日志输出到指定文件中
Posted 健康平安的活着
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot 打成jar,后端进程方式日志输出到指定文件中相关的知识,希望对你有一定的参考价值。
一 jar包日志配置文件的配置
1.1 jar包配置文件的配置
server:
port: 8083
spring:
datasource:
driverClassName: com.mysql.jdbc.Driver
url: jdbc:mysql://172.16.71.172:3306/test_db
username: root
password: root
type: com.alibaba.druid.pool.DruidDataSource
mybatis:
mapper-locations: classpath:mapper/*.xml
type-aliases-package: com.ljf.spring.boot.demo.domain
configuration:
#增加打印sql语句,一般用于本地开发测试
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
cache-enabled: false
#logging:
# level:
# com.ljf.spring.boot.demo.mapper: debug
#分页插件
pagehelper:
helper-dialect: mysql
params: count=countSql
reasonable: true #开启优化,如果开启优化,在分页页码结果没有数据的时候,会显示有数据的页码数据
support-methods-arguments: true #是否支持接口参数来传递分页参数,默认false
1.2 打成jar包上传到服务器
1.3 执行nohup后端进程的方式启动jar
命令: nohup java -jar /root/export/ygjq-portal.jar > ygjq-portal.out 2>&1 &
1.4 查看日志
1.页面刷新
2.生成的log日志
3.日志内容
1.4 总结
1.mybaits.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl 设置日志输出
2.nohup java -jar /root/export/ygjq-portal.jar > ygjq-portal.out 2>&1 & 将日志输入到制定文件中
3.tail -f ygjq-portal.out 输出这个文件的内容
4.日志会在指定的文件中进行追加操作。
查看现在的日志大小
访问一下,产生一些日志:http://172.16.71.181:8083/users/getAllPerson?pageNum=1
再来查看:
以上是关于springboot 打成jar,后端进程方式日志输出到指定文件中的主要内容,如果未能解决你的问题,请参考以下文章