- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章详解Spring Boot读取配置文件与配置文件优先级由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
spring boot读取配置文件 。
1)通过注入applicationcontext 或者 environment对象来读取配置文件里的配置信息.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
package
com.ivan.config.controller;
import
org.springframework.beans.factory.annotation.autowired;
import
org.springframework.context.applicationcontext;
import
org.springframework.core.env.environment;
import
org.springframework.web.bind.annotation.requestmapping;
import
org.springframework.web.bind.annotation.requestmethod;
import
org.springframework.web.bind.annotation.restcontroller;
@restcontroller
public
class
configcontroller {
@autowired
applicationcontext context;
@autowired
environment environment;
@requestmapping
(value=
"/config"
, method={requestmethod.get})
public
string getconfigcontent(){
string name = context.getenvironment().getproperty(
"db.user.name"
);
return
name;
}
@requestmapping
(value=
"/configenv"
, method={requestmethod.get})
public
string getconfigenvironment(){
string name = environment.getproperty(
"db.user.name"
);
return
name;
}
}
|
2)通过@configurationproperties配合@propertysource读取配置文件里的配置信息.
1:通过@propertysource指定当前类里属性的配置文件地址,configurationproperties可以指定配置的前缀,@configuration用于定义一个配置类:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
package
com.ivan.config.entity;
import
org.springframework.boot.context.properties.configurationproperties;
import
org.springframework.context.annotation.configuration;
import
org.springframework.context.annotation.propertysource;
@configuration
@propertysource
(
"classpath:config/druid.properties"
)
@configurationproperties
(prefix =
"druid"
)
public
class
druidconfig {
private
int
initialsize;
private
int
minidle;
private
int
maxactive;
private
int
maxwait;
private
string validationquery;
private
boolean
testwhileidle;
private
boolean
testonborrow;
private
boolean
testonreturn;
public
int
getinitialsize() {
return
initialsize;
}
public
void
setinitialsize(
int
initialsize) {
this
.initialsize = initialsize;
}
public
int
getminidle() {
return
minidle;
}
public
void
setminidle(
int
minidle) {
this
.minidle = minidle;
}
public
int
getmaxactive() {
return
maxactive;
}
public
void
setmaxactive(
int
maxactive) {
this
.maxactive = maxactive;
}
public
int
getmaxwait() {
return
maxwait;
}
public
void
setmaxwait(
int
maxwait) {
this
.maxwait = maxwait;
}
public
string getvalidationquery() {
return
validationquery;
}
public
void
setvalidationquery(string validationquery) {
this
.validationquery = validationquery;
}
public
boolean
istestwhileidle() {
return
testwhileidle;
}
public
void
settestwhileidle(
boolean
testwhileidle) {
this
.testwhileidle = testwhileidle;
}
public
boolean
istestonborrow() {
return
testonborrow;
}
public
void
settestonborrow(
boolean
testonborrow) {
this
.testonborrow = testonborrow;
}
public
boolean
istestonreturn() {
return
testonreturn;
}
public
void
settestonreturn(
boolean
testonreturn) {
this
.testonreturn = testonreturn;
}
@override
public
string tostring() {
return
"druidconfig [initialsize="
+ initialsize +
", minidle="
+ minidle +
", maxactive="
+ maxactive +
", maxwait="
+ maxwait +
", validationquery="
+ validationquery +
", testwhileidle="
+ testwhileidle +
", testonborrow="
+ testonborrow +
", testonreturn="
+ testonreturn +
"]"
;
}
}
|
2:对应的配置文件:
1
2
3
4
5
6
7
8
|
druid.initialsize=
5
druid.minidle=
5
druid.maxactive=
20
druid.maxwait=
60000
druid.validationquery=select
'x'
druid.testwhileidle=
true
druid.testonborrow=
true
druid.testonreturn=
true
|
3:在需要用到的类通过@autowired注入 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package
com.ivan.config.controller;
import
org.springframework.beans.factory.annotation.autowired;
import
org.springframework.web.bind.annotation.requestmapping;
import
org.springframework.web.bind.annotation.requestmethod;
import
org.springframework.web.bind.annotation.restcontroller;
import
com.ivan.config.entity.druidconfig;
@restcontroller
public
class
druidconfigcontroller {
@autowired
public
druidconfig druidconfig;
@requestmapping
(value=
"/druidconfig"
, method={requestmethod.get})
public
string getdruidconfig(){
return
druidconfig.tostring();
}
}
|
3)通过@value注解 。
1:需要得到配置属性的类如下,可以在任何需要得到配置的地方用@value注解 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package
com.ivan.config.entity;
import
org.springframework.beans.factory.annotation.value;
import
org.springframework.context.annotation.configuration;
@configuration
public
class
valuetest {
@value
(
"${db.user.name}"
)
private
string username;
public
string getusername() {
return
username;
}
public
void
setusername(string username) {
this
.username = username;
}
}
|
2:测试controller类通过@autowired注入实体类 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package
com.ivan.config.controller;
import
org.springframework.beans.factory.annotation.autowired;
import
org.springframework.web.bind.annotation.requestmapping;
import
org.springframework.web.bind.annotation.requestmethod;
import
org.springframework.web.bind.annotation.restcontroller;
import
com.ivan.config.entity.valuetest;
@restcontroller
public
class
valuecontroller {
@autowired
private
valuetest value;
@requestmapping
(value=
"/configvalue"
, method={requestmethod.get})
public
string getconfig(){
return
value.getusername();
}
}
|
spring boot 配置文件优先级
1:命令行参数。(以--开头的参数,比如可以设置:--server.port对同一套代码设置不同的参数) 2: 通过 system.getproperties() 获取的 java 系统参数。 3:操作系统环境变量(这解释了为什么你通过application.properties设置的user.name取的是系统的用户名了) 4:从 java:comp/env 得到的 jndi 属性。 5: 应用 jar 文件之外的属性文件(系统的application.properties文件) 6:应用 jar 文件内部的属性文件。 7: 在应用配置 java 类(包含“@configuration”注解的 java 类)中通过“@propertysource”注解声明的属性文件。 8: 通过“springapplication.setdefaultproperties”声明的默认属性.
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
原文链接:https://www.jianshu.com/p/6fcd33551532 。
最后此篇关于详解Spring Boot读取配置文件与配置文件优先级的文章就讲到这里了,如果你想了解更多关于详解Spring Boot读取配置文件与配置文件优先级的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
int x = 1; System.out.println( x++ + x++ * --x ); 上面的代码打印出“5”,但我不明白怎么办?我一直为最后一个 x 取零,然后乘以仍然为 0 的第二个
我现在正在尝试使用 Preference 类 首选项 pfrOfThis = Preferences.userNodeForPackage(this) 出现错误: “类 java.util.prefs
用下面的代码 import sys print "Hello " + sys.argv[1] if len(sys.argv) > 1 else "Joe" + "." 当我运行时 python he
我的网页包含: td { padding-left:10px; } 引用的样式表包含: .rightColumn * {margin: 0; padding: 0;} 我在 rightc
使用 JPA 我有一个关于 CascadeTypes 的问题。 例如: @ManyToMany(fetch=FetchType.LAZY, cascade={CascadeType.PERSIST,
下面的“括号”是怎么写的? val words = List("foo", "bar", "baz") val phrase = "These are upper case: " + words ma
我只是想知道,对于以下代码,编译器是否单独使用关联性/优先级或其他一些逻辑来评估。 int i = 0, k = 0; i = k++; 如果我们根据关联性和优先级进行评估,postfix ++具有比
我设置了一个 Azure FrontDoor 服务,以主/备份类型的方式将流量分配给两个 API 管理服务。就像我希望所有流量都流向我的主要 APIM 服务一样,如果我碰巧关闭该服务(假装中断),那么
这是一个简单的 CSS: /* Smartphones (portrait and landscape) ----------- */ @media only screen and (min-devi
我设置了一个 Azure FrontDoor 服务,以主/备份类型的方式将流量分配给两个 API 管理服务。就像我希望所有流量都流向我的主要 APIM 服务一样,如果我碰巧关闭该服务(假装中断),那么
来自 Programming Perl pg 90,他说: @ary = (1, 3, sort 4, 2); print @ary; 排序右侧的逗号在排序之前求值,而左侧的逗号在排序之
+----+------------+------+ | id | title | lang | +----+------------+------+ | 1 | title 1 EN |
如何使用 Java 获取 DiffServe 代码点 (DSCP) 整数的优先级部分?我预计它涉及位移位,但由于某种原因,我似乎无法获得我期望的值。 最佳答案 假设我理解正确,只需向右执行 3 位逻辑
我有下一个运行良好的 js 函数: $(function () { $(".country").click(function () { var countries = Arra
int a[3]={10,20,30}; int* p = a; cout << *p++ << endl; 根据 wikipedia ,后缀++的优先级高于解引用,*p++应该先运行p++再解引用结
我想在优先读取归档后解决这种类型的表达式 2+3/5*9+3-4 这是我尝试解决该任务的代码我该如何解决这个问题 while ( !inputFile.eof() ) { getline( inp
我正在玩 Rhino 并注意到这种奇怪的行为似乎是运算符优先级: js> {}+{} NaN js> ''+{}+{} [object Object][object Object] js> ''+({
我想遍历文件列表并检查它们是否存在,如果文件不存在则给出错误并退出。我写了下面的代码: FILES=( file1.txt file2.txt file3.txt ) for file in ${FI
我正在执行级联 SELECT: SELECT * FROM x WHERE a = 1 AND b = 2 AND c = 3 => If nothing found, try: SELECT * F
即将参加考试,我正在参加之前的考试。 问题: 当两个或多个样式表规则应用于同一元素时,以下哪种类型的规则将优先? 一个。任何来自浏览器的声明 b.有用户来源的正常声明 C。作者来源正常声明 d.文档级
我是一名优秀的程序员,十分优秀!