Error creating bean with name 'ureport.fontBuilder' defined in class path resource [ureport-core-context.xml]: Initialization of bean failed; nested exception is java.lang.UnsatisfiedLinkError: /usr/local/openjdk-8/jre/lib/aarch64/libfontmanager.so: libfreetype.so.6: cannot open shared object file: No such file or directory
时间: 2024-01-22 12:19:42 浏览: 236
这个错误信息提示说找不到共享对象文件,可能是因为缺少 `libfreetype.so.6` 库文件导致的。你可以尝试在系统上搜索一下这个库文件:
```
sudo find / -name libfreetype.so.6
```
如果能够找到,那么将其路径添加到 `LD_LIBRARY_PATH` 环境变量中:
```
export LD_LIBRARY_PATH=/path/to/libfreetype.so.6:$LD_LIBRARY_PATH
```
如果还是无法解决问题,建议检查一下你的系统是否缺少其他依赖库文件。
相关问题
ureport.properties如何设置ureport.query.submit
ureport.properties 是 UReport 报表引擎的配置文件,其中 ureport.query.submit 属性用于设置报表查询时是否立即提交查询请求。
如果将 ureport.query.submit 设置为 true,则表示在打开报表时立即提交查询请求;如果设置为 false,则表示在打开报表时不提交查询请求,等待用户手动提交查询请求。
例如,将 ureport.query.submit 设置为 true:
```
ureport.query.submit=true
```
这样,在打开报表时会立即提交查询请求,展示最新的数据。如果设置为 false,用户需要手动点击查询按钮才能获取最新的数据。
ureport.properties如何设置
ureport.properties是用于配置ureport报表引擎的属性文件,可以通过以下步骤来进行设置:
1. 打开ureport.jar包,找到ureport.properties文件,将其复制到你的工程中的resources目录下。
2. 在ureport.properties文件中添加需要的设置属性,例如:
```
ureport.fileStoreDir=/ureport/file
ureport.previewTmpDir=/ureport/tmp
ureport.exportTmpDir=/ureport/export
ureport.reportHome=/ureport/report
ureport.pdfExportUrl=http://localhost:8080/ureport/pdf
ureport.excelExportUrl=http://localhost:8080/ureport/excel
ureport.wordExportUrl=http://localhost:8080/ureport/word
ureport.htmlExportUrl=http://localhost:8080/ureport/html
```
3. 保存ureport.properties文件,重启应用程序即可生效。
注意事项:
1. 在设置文件路径时,需要使用Unix风格的路径,例如:/ureport/file。
2. 在设置URL时,需要使用完整的URL地址,例如:http://localhost:8080/ureport/pdf。
3. 配置项的含义可以参考ureport.properties文件中的注释。
阅读全文