更改jasperServer中的文件夹名称后报告的路径没有改变

the path of the report does not change after changing the name of the folder in jasperServer

我在 jasperServer 中有一个文件夹 (cat1),其中包含一些报告。使用 Web 界面将文件夹名称更改为 category1 后,此文件夹内的报告路径不会改变。例如,report1 仍然具有路径 /reports/cat1/report1 而不是 /reports/category1/report1

如何解决这个问题?

我按照 jasperServer rest client API 中的建议移动资源解决了这个问题。

OperationResult<ClientResource> result = client
        .authenticate("jasperadmin", "jasperadmin")
        .resourcesService()
        .resource("/reports/category1/report1")
        .moveFrom("/reports/cat1/report1");