当前位置:   article > 正文

spring boot创建及配置热部署,多环境配置_management.server.servlet.context-path

management.server.servlet.context-path

idea配置

spring boot 热部署导入devtool依赖idea窗口钝化

yml yet anothor markup language

actuator是spring boot 提供的对应系统的自省和监控的基础功能,当出现问题时可以及时的定位问题。

每一个工程都可以使用。

  1. #Actuator 监控端口号
  2. management.server.port=9999
  3. management.server.servlet.context-path=/kkk

localhost:9999/kkk/actuator/health查询状态

在配置文件中添加info信息 info.projext.groupId=@project.groupId@

{"company":{"name":"rookie.li","url":"China"},"project":{"groupid":"com.kaikeba","artifactId":"01-primary","version":"0.0.1-SNAPSHOT"}}

application.properties配置

  1. #当前应用系统的端口号与上下文路径
  2. server.port=8888
  3. server.servlet.context-path=/kkb
  4. #Actuator 监控端口号
  5. management.server.port=9999
  6. management.server.servlet.context-path=/kkk
  7. #指定监控终端的基本路径默认为/actuator
  8. management.endpoints.web.base-path=/base
  9. #开放所有监控终端
  10. management.endpoints.web.exposure.include=*
  11. #关闭某些
  12. management.endpoints.web.exposure.exclude=env
  13. #自定义info信息
  14. info.company.name=rookie.li
  15. info.company.url=China
  16. #从pom.xml读取信息
  17. info.project.groupid=@project.groupId@
  18. info.project.artifactId=@project.artifactId@
  19. info.project.version=@project.version@

mappings显示隐射关系

env环境

info信息

health应用程序健康指标

shutdown关闭应用程序需要enpoints.shutdown.enabled设置为true

metrics报告各种应用程序度量信息比如内存

跳转页面404文件名public、error

文件名404.html

多环境选择

只需要在springboot的配置文件中指定即可

  1. applocation-pro.properties配置
  2. server.port=9999
  3. server.servlet.context-path=/pro

application-dev.properties配置

  1. #开发环境
  2. server.port=8888
  3. server.servlet.context-path=/dev
  1. application.properties配置
  2. spring.profiles.active=pro

打出jar包后选择环境只需要 java -jar xxx.jar --sping.profiles.active=dev即可

@profiles可以支持到方法级别

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/天景科技苑/article/detail/856544
推荐阅读
相关标签
  

闽ICP备14008679号