Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2
211010717
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Summer2021
211010717
Commits
5d4c9915
Unverified
Commit
5d4c9915
authored
4 years ago
by
Hover Ruan
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
optimize: get config from file system even without file: prefix (#3341)
parent
80ea72af
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
config/seata-config-core/src/main/java/io/seata/config/FileConfiguration.java
+64
-40
64 additions, 40 deletions
...core/src/main/java/io/seata/config/FileConfiguration.java
with
64 additions
and
40 deletions
config/seata-config-core/src/main/java/io/seata/config/FileConfiguration.java
+
64
−
40
View file @
5d4c9915
...
@@ -19,6 +19,7 @@ import java.io.File;
...
@@ -19,6 +19,7 @@ import java.io.File;
import
java.io.UnsupportedEncodingException
;
import
java.io.UnsupportedEncodingException
;
import
java.net.URL
;
import
java.net.URL
;
import
java.net.URLDecoder
;
import
java.net.URLDecoder
;
import
java.nio.charset.StandardCharsets
;
import
java.util.HashMap
;
import
java.util.HashMap
;
import
java.util.HashSet
;
import
java.util.HashSet
;
import
java.util.Map
;
import
java.util.Map
;
...
@@ -112,7 +113,7 @@ public class FileConfiguration extends AbstractConfiguration {
...
@@ -112,7 +113,7 @@ public class FileConfiguration extends AbstractConfiguration {
targetFilePath
=
file
.
getPath
();
targetFilePath
=
file
.
getPath
();
fileConfig
=
FileConfigFactory
.
load
(
file
,
name
);
fileConfig
=
FileConfigFactory
.
load
(
file
,
name
);
}
}
/*
*
/*
* For seata-server side the conf file should always exists.
* For seata-server side the conf file should always exists.
* For application(or client) side,conf file may not exists when using seata-spring-boot-starter
* For application(or client) side,conf file may not exists when using seata-spring-boot-starter
*/
*/
...
@@ -135,58 +136,81 @@ public class FileConfiguration extends AbstractConfiguration {
...
@@ -135,58 +136,81 @@ public class FileConfiguration extends AbstractConfiguration {
if
(
name
==
null
)
{
if
(
name
==
null
)
{
throw
new
IllegalArgumentException
(
"name can't be null"
);
throw
new
IllegalArgumentException
(
"name can't be null"
);
}
}
String
filePath
=
null
;
boolean
filePathCustom
=
name
.
startsWith
(
SYS_FILE_RESOURCE_PREFIX
);
boolean
filePathCustom
=
name
.
startsWith
(
SYS_FILE_RESOURCE_PREFIX
);
if
(
filePathCustom
)
{
String
filePath
=
filePathCustom
?
name
.
substring
(
SYS_FILE_RESOURCE_PREFIX
.
length
())
:
name
;
filePath
=
name
.
substring
(
SYS_FILE_RESOURCE_PREFIX
.
length
());
String
decodedPath
=
URLDecoder
.
decode
(
filePath
,
StandardCharsets
.
UTF_8
.
name
());
}
else
{
// projectDir first
File
targetFile
=
getFileFromFileSystem
(
decodedPath
);
filePath
=
this
.
getClass
().
getClassLoader
().
getResource
(
""
).
getPath
()
+
name
;
if
(
targetFile
!=
null
)
{
}
filePath
=
URLDecoder
.
decode
(
filePath
,
"utf-8"
);
File
targetFile
=
new
File
(
filePath
);
if
(!
targetFile
.
exists
())
{
for
(
String
s
:
FileConfigFactory
.
getSuffixSet
())
{
targetFile
=
new
File
(
filePath
+
ConfigurationKeys
.
FILE_CONFIG_SPLIT_CHAR
+
s
);
if
(
targetFile
.
exists
())
{
if
(
LOGGER
.
isInfoEnabled
())
{
LOGGER
.
info
(
"The configuration file used is {}"
,
targetFile
.
getPath
());
}
return
targetFile
;
}
}
}
else
{
if
(
LOGGER
.
isInfoEnabled
())
{
if
(
LOGGER
.
isInfoEnabled
())
{
LOGGER
.
info
(
"The configuration file used is {}"
,
name
);
LOGGER
.
info
(
"The configuration file used is {}"
,
targetFile
.
getPath
()
);
}
}
return
targetFile
;
return
targetFile
;
}
}
if
(!
filePathCustom
)
{
if
(!
filePathCustom
)
{
URL
resource
=
this
.
getClass
().
getClassLoader
().
getResource
(
name
);
File
classpathFile
=
getFileFromClasspath
(
name
);
if
(
resource
==
null
)
{
if
(
classpathFile
!=
null
)
{
for
(
String
s
:
FileConfigFactory
.
getSuffixSet
())
{
return
classpathFile
;
resource
=
this
.
getClass
().
getClassLoader
().
getResource
(
name
+
ConfigurationKeys
.
FILE_CONFIG_SPLIT_CHAR
+
s
);
}
if
(
resource
!=
null
)
{
}
if
(
LOGGER
.
isInfoEnabled
())
{
}
catch
(
UnsupportedEncodingException
e
)
{
LOGGER
.
info
(
"The configuration file used is {}"
,
resource
.
getPath
());
LOGGER
.
error
(
"decode name error: {}"
,
e
.
getMessage
(),
e
);
}
}
String
path
=
resource
.
getPath
();
path
=
URLDecoder
.
decode
(
path
,
"utf-8"
);
return
null
;
return
new
File
(
path
);
}
}
}
private
File
getFileFromFileSystem
(
String
decodedPath
)
{
}
else
{
String
[]
tryPaths
=
new
String
[]
{
// first: project dir
this
.
getClass
().
getClassLoader
().
getResource
(
""
).
getPath
()
+
decodedPath
,
// second: system path
decodedPath
};
for
(
String
tryPath
:
tryPaths
)
{
File
targetFile
=
new
File
(
tryPath
);
if
(
targetFile
.
exists
())
{
return
targetFile
;
}
// try to append config suffix
for
(
String
s
:
FileConfigFactory
.
getSuffixSet
())
{
targetFile
=
new
File
(
tryPath
+
ConfigurationKeys
.
FILE_CONFIG_SPLIT_CHAR
+
s
);
if
(
targetFile
.
exists
())
{
return
targetFile
;
}
}
}
return
null
;
}
private
File
getFileFromClasspath
(
String
name
)
throws
UnsupportedEncodingException
{
URL
resource
=
this
.
getClass
().
getClassLoader
().
getResource
(
name
);
if
(
resource
==
null
)
{
for
(
String
s
:
FileConfigFactory
.
getSuffixSet
())
{
resource
=
this
.
getClass
().
getClassLoader
().
getResource
(
name
+
ConfigurationKeys
.
FILE_CONFIG_SPLIT_CHAR
+
s
);
if
(
resource
!=
null
)
{
if
(
LOGGER
.
isInfoEnabled
())
{
if
(
LOGGER
.
isInfoEnabled
())
{
LOGGER
.
info
(
"The configuration file used is {}"
,
name
);
LOGGER
.
info
(
"The configuration file used is {}"
,
resource
.
getPath
()
);
}
}
String
path
=
resource
.
getPath
();
String
path
=
resource
.
getPath
();
path
=
URLDecoder
.
decode
(
path
,
"utf-8"
);
path
=
URLDecoder
.
decode
(
path
,
StandardCharsets
.
UTF_8
.
name
()
);
return
new
File
(
path
);
return
new
File
(
path
);
}
}
}
}
}
catch
(
UnsupportedEncodingException
e
)
{
}
else
{
LOGGER
.
error
(
"file not found--"
+
e
.
getMessage
(),
e
);
if
(
LOGGER
.
isInfoEnabled
())
{
LOGGER
.
info
(
"The configuration file used is {}"
,
name
);
}
String
path
=
resource
.
getPath
();
path
=
URLDecoder
.
decode
(
path
,
StandardCharsets
.
UTF_8
.
name
());
return
new
File
(
path
);
}
}
return
null
;
return
null
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment