summaryrefslogtreecommitdiff
path: root/eaaf_core_utils
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2019-10-01 15:12:04 +0200
committerThomas Lenz <thomas.lenz@egiz.gv.at>2019-10-01 15:12:04 +0200
commit63d74e5db5a38672c221467d51a737bc019df38d (patch)
tree7b30b3f71c59acad8f5561c942773429f9fdc767 /eaaf_core_utils
parenta3aeeb7cce564d80c44f1b9aa96208f3a50cfda5 (diff)
downloadEAAF-Components-63d74e5db5a38672c221467d51a737bc019df38d.tar.gz
EAAF-Components-63d74e5db5a38672c221467d51a737bc019df38d.tar.bz2
EAAF-Components-63d74e5db5a38672c221467d51a737bc019df38d.zip
inject ResourceLoader to facilitate Spring based resource loading
Diffstat (limited to 'eaaf_core_utils')
-rw-r--r--eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/utils/FileUtils.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/utils/FileUtils.java b/eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/utils/FileUtils.java
index fff83e53..6ac51ac4 100644
--- a/eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/utils/FileUtils.java
+++ b/eaaf_core_utils/src/main/java/at/gv/egiz/eaaf/core/impl/utils/FileUtils.java
@@ -121,7 +121,8 @@ public class FileUtils {
if(null == url) return null;
- if (url.startsWith("http:") || url.startsWith("https:") || url.startsWith("file:") || url.startsWith("ftp:")) {
+ if (url.startsWith("http:") || url.startsWith("https:") || url.startsWith("file:")
+ || url.startsWith("ftp:") || url.startsWith("classpath:")) {
return url;
} else {