gpt4 book ai didi

java - 使用maven插件生成.jasper

转载 作者:行者123 更新时间:2023-11-30 10:45:21 26 4
gpt4 key购买 nike

我希望提高我的应用程序的性能,它有两种类型的报告,然后在执行时像这样编译:

  final JasperDesign design = JRXmlLoader.load(input);

final JasperReport compiledReport = JasperCompileManager.compileReport(design);

每当用户想要在应用程序上查看报告时,都会执行此代码。为避免这种情况,我尝试通过 maven jasperreports 插件执行 .jrxml 的编译,但它不起作用,并且控制台上没有错误。.jasper 文件没有出现在我的目录“outputDirectory”中。

        <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jasperreports-maven-plugin</artifactId>
<executions>
<execution>
<phase>compile</phase>
<inherited>false</inherited>
<goals>
<goal>compile-reports</goal>
</goals>
</execution>
</executions>
<configuration>
<sourceDirectory>src/main/resources/reports</sourceDirectory>
<outputDirectory>src/main/resources/reports/jasper</outputDirectory>
<compiler>net.sf.jasperreports.engine.design.JRJdtCompiler</compiler>
</configuration>
</plugin>

最佳答案

我知道这是旧的,但是当我在 <pluginManagement> 中定义插件时,这发生在我身上POM 部分而不是 <plugins> .

关于java - 使用maven插件生成.jasper,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37047603/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com