We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a34f413 commit c6898b6Copy full SHA for c6898b6
java/src/main/java/com/genexus/Preferences.java
@@ -127,7 +127,8 @@ public String getBLOB_PATH() {
127
public String getPRIVATE_PATH() {
128
synchronized (objLock) {
129
if (PRIVATE_PATH == null) {
130
- PRIVATE_PATH = getProperty_PATH(getProperty("TMPMEDIA_DIR", "").trim(), "WEB-INF");
+ String webInternalPath = ApplicationContext.getInstance().isSpringBootApp()? "" : "WEB-INF";
131
+ PRIVATE_PATH = getProperty_PATH(getProperty("TMPMEDIA_DIR", "").trim(), webInternalPath);
132
}
133
134
return PRIVATE_PATH;
0 commit comments