快捷搜索:  汽车  科技

spring boot 配置文件说明(SpringBoot之入门配置文件)

spring boot 配置文件说明(SpringBoot之入门配置文件)test.springboot.desc=${test.springboot.context}爱${test.springboot.name}#参数间引用application.propertiestest.springboot.name=学习test.springboot.context=我

介绍:example02

相信很多人选择Spring Boot主要是考虑到它既能兼顾Spring的强大功能,还能实现快速开发的便捷。我们在Spring Boot使用过程中,最直观的感受就是没有了原来自己整合Spring应用时繁多的XML配置内容,替代它的是在pom.xml中引入模块化的Starter POMs,其中各个模块都有自己的默认配置,所以如果不是特殊应用场景,就只需要在application.properties中完成一些属性配置就能开启各模块的应用。

配置文件application.properties的使用,主要用来配置数据库连接、日志相关配置等。除了这些配置内容之外,本文将具体介绍一些在application.properties配置中的其他特性和使用方法。

我们在使用Spring Boot的时候,通常也需要定义一些自己使用的属性,我们可以如下方式直接定义:

application.properties

test.springboot.name=学习

test.springboot.context=我

#参数间引用

test.springboot.desc=${test.springboot.context}爱${test.springboot.name}

#随机数

##随机字符串

test.springboot.value=${random.value}

运行getHello方法,可以读到application.properties中的数据:

spring boot 配置文件说明(SpringBoot之入门配置文件)(1)

猜您喜欢: