web-dev-qa-db-ja.com

jrxmlをコンパイルしてジャスパーを取得するにはどうすればよいですか?

Antでは、。jrxmlファイルをコンパイルして。jasper

65
Mohamed Saligh

Jrxmlをジャスパーにコンパイルするには、3つの方法があります。

  1. IReportデザイナーのコンパイルボタン(ハンマーのロゴ)を使用して、直接コンパイルを実行できます。

  2. Ant Compile Sample に示すように、antを使用してコンパイルできます。

    <target name="compile1"> 
      <mkdir dir="./build/reports"/> 
      <jrc 
        srcdir="./reports"
        destdir="./build/reports"
        tempdir="./build/reports"
        keepjava="true"
        xmlvalidation="true">
       <classpath refid="runClasspath"/>
       <include name="**/*.jrxml"/>
      </jrc>
    </target>
    

    以下は、現在のプロジェクトのレポートコンパイルタスクです。

    alt text

    Daniel Rikowski からの追加:

  3. JasperCompileManager クラスを使用して、Javaコードからコンパイルすることもできます。

    JasperCompileManager.compileReportToFile(
                    "our_jasper_template.jrxml", // the path to the jrxml file to compile
                    "our_compiled_template.jasper"); // the path and name we want to save the compiled file to
    
63
Sal Prima

Jaspersoft Studio を使用するこの質問に出くわした人は(iReportsを置き換えていると思います。Eclipseベースのフリーウェアであり、非常によく似ています)、上部にある[レポートのコンパイル]アイコンを探してください。 .jrxmlファイルのエディター領域の。そのアイコンの最初のアイコンは、バイナリ番号が付いたファイルです(少なくともバージョン5.6.2では):

Jaspersoft Studio - compile report

このアイコンをクリックすると、.jrxmlファイルと同じディレクトリに.jasperファイルが生成されます。

24

mavenでは、自動です。

<plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>jasperreports-maven-plugin</artifactId>
        <configuration>
        <outputDirectory>target/${project.artifactId}/WEB-INF/reports</outputDirectory>
    </configuration>
        <executions>
            <execution>
                <phase>prepare-package</phase>
                <inherited>false</inherited>
                <goals>
                    <goal>compile-reports</goal>
                </goals>
            </execution>
        </executions>
        <dependencies>
    <dependency>
        <groupId>net.sf.jasperreports</groupId>
        <artifactId>jasperreports</artifactId>
        <version>3.7.6</version> 
    </dependency>
    <dependency>
        <groupId>log4j</groupId>
        <artifactId>log4j</artifactId>
        <version>1.2.16</version>
        <type>jar</type>
    </dependency>
    </dependencies>
14
leccionesonline

IReport 2.0.2を使用して、ジャスパーファイルを生成しています。

ハンマーのロゴは見つかりませんでしたが、メニューがありますcreate > compile iReportプログラムファイルフォルダーにジャスパーファイルを作成するメニューバー:

IReportログ:「コンパイルとファイルの編集..。\ SalesOrderItemsSubreportA4.jasper-> C:\ Program Files\JasperSoft\iReport-2.0.2\SalesOrderItemsSubreportA4.Java」

9
Grégory

IReport Designer 5.6.0を使用して、プレビューせずに複数のjrxmlファイルをコンパイルする場合は、[ツール]-> [Massive Processing Tool]に移動します。 [エラボレーションタイプ]を[ファイルのコンパイル]として選択し、すべてのjrxmlレポートが保存されているフォルダーを選択して、バッチでコンパイルします。

5
Vivek

IReportを使用している場合は、簡単に実行できます。

  1. プレビューをクリックすると、自動的にコンパイルされます。
  2. 従うオプションがあります。ページを選択してコンパイルし、右クリックしてコンパイルオプションを取得します。

Eclipseでは、

  • Eclipse用の Jaspersoft Studio をインストールします。
  • .jrxmlファイルを右クリックして、Open with JasperReports Book Editorを選択します
  • .jrxmlファイルのDesignタブを開きます。
  • ウィンドウの上部にCompile Reportアイコンが表示されます。
4
Lucky

バージョン5.1.0の使用:

プレビューをクリックするだけで、同じ作業ディレクトリにYourReportName.jasperが作成されます。

3
Ali
  1. IReport Designerで.jrxmlファイルを開きます。
  2. レポートインスペクターを開きます(ウィンドウ->レポートインスペクター)。
  3. インスペクターの上部にあるレポート名を右クリックして、「レポートのコンパイル」をクリックします。

レポートをプレビューして、自動的にコンパイルすることもできます。

2
rickbala_
 **A full example of POM file**.

Command to Build All **Jrxml** to **Jasper File** in maven
If you used Eclipse then right click on the project and Run as maven Build and add goals antrun:run@compile-jasper-reports 


compile-jasper-reports is the id you gave in the pom file.
**<id>compile-jasper-reports</id>**




<project xmlns="http://maven.Apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.Apache.org/POM/4.0.0 http://maven.Apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>com.test.jasper</groupId>
  <artifactId>testJasper</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>TestJasper</name>
  <url>http://maven.Apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <dependency>
        <groupId>log4j</groupId>
        <artifactId>log4j</artifactId>
        <version>1.2.17</version>
    </dependency>
    <dependency>
        <groupId>net.sf.jasperreports</groupId>
        <artifactId>jasperreports</artifactId>
        <version>6.3.0</version>
    </dependency>
    <dependency>
        <groupId>net.sf.jasperreports</groupId>
        <artifactId>jasperreports-fonts</artifactId>
        <version>6.0.0</version>
    </dependency>
    <dependency>
        <groupId>org.codehaus.groovy</groupId>
        <artifactId>groovy-all</artifactId>
        <version>2.4.6</version>
    </dependency>
    <dependency>
        <groupId>com.itextpdf</groupId>
        <artifactId>itextpdf</artifactId>
        <version>5.5.6</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>


  </dependencies>
    <build>
    <pluginManagement>
    <plugins>
         <plugin>
            <groupId>org.Apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.5</version>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin>       
        <plugin>
            <groupId>org.Apache.maven.plugins</groupId>
            <artifactId>maven-antrun-plugin</artifactId>
            <version>1.8</version>
            <executions>
                <execution>
                    <id>compile-jasper-reports</id>
                    <goals>
                        <goal>run</goal>
                    </goals>
                    <phase>generate-sources</phase>
                    <configuration>
                        <target>
                            <echo message="Start compile of jasper reports" />
                            <mkdir dir="${project.build.directory}/classes/reports"/>
                            <echo message="${basedir}/src/main/resources/jasper/jasperreports" />
                            <taskdef name="jrc" classname="net.sf.jasperreports.ant.JRAntCompileTask"
                                classpathref="maven.compile.classpath" />
                                <jrc srcdir="${basedir}/src/main/resources/jasper/jasperreports" destdir="${basedir}/src/main/resources/jasper/jasperclassfile"
                                  xmlvalidation="true">
                                <classpath refid="maven.compile.classpath"/>
                                <include name="**/*.jrxml" />
                            </jrc>
                        </target>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
    </pluginManagement>
</build>
</project>
0
Hardik Dobariya