@@ -34,6 +34,10 @@ public class BasicResourceHandler implements ResourceHandler {
// || filePath.contains("/tmp/")) {
// return false;
//}
+ if (filePath.endsWith(".jasper") || filePath.contains("\\tmp\\")
+ || filePath.contains("/tmp/")) {
+ return false;
+ }
return true;
}
};
@@ -79,6 +79,10 @@ public class FileServiceImpl implements FileService {