SpringBoot中的常用配置

Posted 爱拼才会赢

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot中的常用配置相关的知识,希望对你有一定的参考价值。

一 . 关于在application.properties文件中的一些常见配置

    1.server.port=8888   :表示配置端口

    2.server.context-path  表示自定义上下文路径

    3.server.tomcat.uri-encoding = UTF-8        表示用于解码URI的字符编码。

    4.spring.http.encoding.charset = UTF-8 #HTTP请求和响应的字符集。如果未明确设置,则添加到“Content-Type”头。

    5.启用健康检查,首先必须先要添加支持的jar包 

      配置在maven项目下的pom.xml文件中

    <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>   

    6.#关闭actutor的安全认证
    7.#http://localhost:8888/sb/health 查看springboot健康状况是否良好
    8.#http://localhost:8888/sb/beans 类似于struts<s:debug>
    9.#http://localhost:8888/sb/dump dump出线程和内存使用情况
    10.#http://localhost:8888/sb/env java和springboot的环境变量
    11.management.security.enabled=false
    12.#启动url shutdown
      endpoints.shutdown.enabled=true








以上是关于SpringBoot中的常用配置的主要内容,如果未能解决你的问题,请参考以下文章

21个常用代码片段

SpringBoot 中从yml配置文件中读取常用的参数值

配置 VScode 编辑器 (前端篇)

Spring Boot中的一些常用配置介绍!

Springboot中如何访问静态资源?

JS常用代码片段-127个常用罗列-值得收藏