java – Spring 5报告

Spring Framework 5的更新日志中,它声明它们删除了JasperReports的兼容性.我可以使用哪种报告工具,它与Spring FW 5兼容?

最佳答案
https://jira.spring.io/browse/SPR-13294
从机票

we rather recommend native use of the JasperReports API in Spring MVC
handler methods,generating reports from specifically designed RESTful
endpoints.
We are dropping our Now semi-useless JasperReports view
class hierarchy as of Spring Framework 5.0. Note that our existing
support against the deprecated JRExporter API remains around in the
Spring Framework 4.3.x line until 2019,in particular for existing
applications. However,even with 4.3,native use of the JasperReports
API is worth considering.

您应该使用JasperReport,但避免使用JRExporter.因此,只需手动添加所有JasperReport库并在需要时创建报告. Jasper Report生成代码可以由您自己的端点调用.

相关文章

这篇文章主要介绍了spring的事务传播属性REQUIRED_NESTED的原...
今天小编给大家分享的是一文解析spring中事务的传播机制,相...
这篇文章主要介绍了SpringCloudAlibaba和SpringCloud有什么区...
本篇文章和大家了解一下SpringCloud整合XXL-Job的几个步骤。...
本篇文章和大家了解一下Spring延迟初始化会遇到什么问题。有...
这篇文章主要介绍了怎么使用Spring提供的不同缓存注解实现缓...