|
@@ -113,7 +113,7 @@ public class NoveltyExportReportService {
|
|
|
JSONObject configObject = JSONObject.parseObject(dateSource);
|
|
|
LoopRowTableRenderPolicy tableRenderPolicy = new LoopRowTableRenderPolicy();
|
|
|
HtmlRenderPolicy htmlRenderPolicy = new HtmlRenderPolicy();
|
|
|
- ConfigureBuilder configureBuilder = Configure.builder().useSpringEL();
|
|
|
+ ConfigureBuilder configureBuilder = Configure.builder().useSpringEL(false);
|
|
|
for (Map.Entry<String, Object> entry : configObject.entrySet()) {
|
|
|
String key = entry.getKey();
|
|
|
JSONObject jsonObject = configObject.getJSONObject(key);
|
|
@@ -125,10 +125,7 @@ public class NoveltyExportReportService {
|
|
|
case PoiPolicy.HTML:
|
|
|
configureBuilder.bind(key, htmlRenderPolicy);
|
|
|
break;
|
|
|
-
|
|
|
-
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
Configure configure = configureBuilder.build();
|
|
|
return configure;
|