SpringBoot的配置⽂件类型
四、SpringBoot的配置⽂件
4.1 SpringBoot配置⽂件类型
4.1.1 SpringBoot配置⽂件类型和作⽤
SpringBoot是基于约定的,所以很多配置都有默认值,但如果想使⽤⾃⼰的配置替换默认配置的话,就可以使⽤application.properties或者l(application.yaml)进⾏配置。
SpringBoot默认会从Resources⽬录下加载application.properties或l(application.yaml)⽂件 其中,application.properties⽂件是键值对类型的⽂件,之前⼀直在使⽤,所以此处不在对properties⽂件的格式
进⾏阐述。除了properties⽂件外,SpringBoot还可以使⽤yml⽂件进⾏配置,下⾯对yml⽂件进⾏讲解。
4.1.l配置⽂件
4.1.2.1 yml配置⽂件简介
YML⽂件格式是YAML (YAML Aint Markup Language)编写的⽂件格式,YAML是⼀种直观的能够被电脑识别的的数据数据序列化格式,并且容易被⼈类阅读,容易和脚本语⾔交互的,可以被⽀持YAML库的不同的编程语⾔程序导
⼊,⽐如: C/C++, Ruby, Python, Java, Perl, C#, PHP等。YML⽂件是以数据为核⼼的,⽐传统的xml⽅式更加简洁。
YML⽂件的扩展名可以使⽤.yml或者.yaml。
4.1.2.2 yml配置⽂件的语法
4.1.2.2.1 配置普通数据
语法: key: value
⽰例代码:
name: haohao
注意:value之前有⼀个空格
4.1.2.2.2 配置对象数据
语法:
key: key1: value1 key2: value2 或者: key: {key1: value1,key2: value2}
⽰例代码:
person:
name: haohao
age: 31
addr: beijing
#或者
person: {name: haohao,age: 31,addr: beijing}
注意:key1前⾯的空格个数不限定,在yml语法中,相同缩进代表同⼀个级别
4.1.2.2.3 配置数组(List、Set)数据
语法:
key:
value1
value2 或者: key: [value1,value2]
⽰例代码:
city:
- beijing
- tianjin
- shanghai
- chongqing
#或者
city: [beijing,tianjin,shanghai,chongqing]
#集合中的元素是对象形式
student:
- name: zhangsan
age: 18
score: 100
- name: lisi
age: 28
score: 88
- name: wangwu
age: 38
score: 90
注意:value1与之间的 - 之间存在⼀个空格
4.1.3 SpringBoot配置信息的查询
上⾯提及过,SpringBoot的配置⽂件,主要的⽬的就是对配置信息进⾏修改的,但在配置时的key从哪⾥去查询呢?我们可以查阅SpringBoot的官⽅⽂档
⽂档URL:
properties
常⽤的配置摘抄如下:
spring.quartz.properties.*= # Additional Quartz Scheduler properties.
spring mvc和boot区别# ----------------------------------------
# WEB PROPERTIES
# ----------------------------------------
# EMBEDDED SERVER CONFIGURATION (ServerProperties)
server.port=8080 # Server HTTP port.
t-path= # Context path of the application.
server.servlet.path=/ # Path of the main dispatcher servlet.
# HTTP encoding (HttpEncodingProperties)
ding.charset=UTF-8 # Charset of HTTP requests and responses. Added to
the "Content-Type" header if not set explicitly.
# JACKSON (JacksonProperties)
spring.jackson.date-format= # Date format string or a fully-qualified date format
class name. For instance, `yyyy-MM-dd HH:mm:ss`.
# SPRING MVC (WebMvcProperties)
spring.mvc.servlet.load-on-startup=-1 # Load on startup priority of the dispatcher
servlet.
spring.mvc.static-path-pattern=/** # Path pattern used for static resources.
spring.mvc.view.prefix= # Spring MVC view prefix.
spring.mvc.view.suffix= # Spring MVC view suffix.
# DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
spring.datasource.driver-class-name= # Fully qualified name of the JDBC driver. Auto-
detected based on the URL by default.
spring.datasource.password= # Login password of the database.
spring.datasource.url= # JDBC URL of the database.
spring.datasource.username= # Login username of the database.
# JEST (Elasticsearch HTTP client) (JestProperties)
spring.elasticsearch.jest.password= # Login password.
spring.elasticsearch.jest.proxy.host= # Proxy host the HTTP client should use.
spring.elasticsearch.jest.proxy.port= # Proxy port the HTTP client should use.
spring.ad-timeout=3s # Read timeout.
spring.elasticsearch.jest.username= # Login username.
我们可以通过配置application.poperties 或者 l 来修改SpringBoot的默认配置例如:
application.properties⽂件
server.port=8888
t-path=demo
server:
port: 8888
servlet:
context-path: /demo
4.2 配置⽂件与配置类的属性映射⽅式
4.2.1 使⽤注解@Value映射
我们可以通过@Value注解将配置⽂件中的值映射到⼀个Spring管理的Bean的字段上
例如:
application.properties配置如下:
person:
name: zhangsan
age: 18
或者,l配置如下:
person:
name: zhangsan
age: 18
实体Bean代码如下:
@Controller
public class QuickStartController {
@Value("${person.name}")
private String name;
@Value("${person.age}")
private Integer age;
@RequestMapping("/quick")
@ResponseBody
public String quick(){
return "springboot 访问成功! name="+name+",age="+age;
}
}
浏览器访问地址: 结果如下:
4.2.2 使⽤注解@ConfigurationProperties映射
通过注解@ConfigurationProperties(prefix=“配置⽂件中的key的前缀”)可以将配置⽂件中的配置⾃动与实体进⾏映射application.properties配置如下:
person:
name: zhangsan
age: 18
或者,l配置如下:
person:
name: zhangsan
age: 18
实体Bean代码如下:
@Controller
@ConfigurationProperties(prefix = "person")
public class QuickStartController {
private String name;
private Integer age;
@RequestMapping("/quick")
@ResponseBody
public String quick(){
return "springboot 访问成功! name="+name+",age="+age;
}
public void setName(String name) {
this.name = name;
}
public void setAge(Integer age) {
this.age = age;
}
}
浏览器访问地址: 结果如下:
注意:使⽤@ConfigurationProperties⽅式可以进⾏配置⽂件与实体字段的⾃动映射,但需要字段必须提供set⽅法才可以,⽽使⽤@Value注解修饰的字段不需要提供set⽅法
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论