4

次のエラーが表示されます

java.lang.IllegalStateException: Unable to determine the default workspace location.  Check your OSGi-less platform configuration of the plugin or datatools workspace path.

これはほとんど意味がありません。

レポートは Eclipse 内の BIRT デザイナーを使用して作成され、コードを使用してレポートを PDF に変換しています。

コードは次のようになります

    final EngineConfig config = new EngineConfig();
    config.setBIRTHome("./birt");
    Platform.startup(config);
    final IReportEngineFactory factory = (IReportEngineFactory) Platform
            .createFactoryObject(IReportEngineFactory.EXTENSION_REPORT_ENGINE_FACTORY);

    final HTMLRenderOption ho = new HTMLRenderOption();
    ho.setImageHandler(new HTMLCompleteImageHandler());
    config.setEmitterConfiguration(RenderOption.OUTPUT_FORMAT_HTML, ho);
    // Create the engine.
    this.engine = factory.createReportEngine(config);
    final IReportRunnable report = this.engine.openReportDesign(reportName);
    final IRunAndRenderTask task = this.engine.createRunAndRenderTask(report);
    final RenderOption options = new HMTLRenderOption();
    options.setOutputFormat(HTMLRenderOption.OUTPUT_FORMAT_PDF);
    options.setOutputFormat("pdf");
    final String output = reportName.replaceFirst(".rptdesign", ".xls");
    final String output = name.replaceFirst(".rptdesign", "." + HTMLRenderOption.OUTPUT_FORMAT_PDF);
    options.setOutputFileName( outputReporttName);
    task.setRenderOption(options);


    // Run the report.
    task.run();

しかし、task.run()メソッドの実行中に、システムがエラーをスローしたようです。

これはEclipseを必要とせずにスタンドアロンで実行できる必要があり、BIRTホームの設定がそれを幸せにするだろうとホップしましたが、これらは私が知らない他の接続プロファイルのようで、おそらく必要ありません.

完全なエラー:

07-Jan-2013 14:55:31 org.eclipse.datatools.connectivity.internal.ConnectivityPlugin log
SEVERE: Unable to determine the default workspace location.  Check your OSGi-less      platform configuration of the plugin or datatools workspace path.
07-Jan-2013 14:55:31 org.eclipse.birt.report.engine.api.impl.EngineTask handleFatalExceptions
SEVERE: An error happened while running the report. Cause:
java.lang.IllegalStateException: Unable to determine the default workspace location.  Check your OSGi-less platform configuration of the plugin or datatools workspace path.
at org.eclipse.datatools.connectivity.internal.ConnectivityPlugin.getDefaultStateLocation(ConnectivityPlugin.java:155)
at org.eclipse.datatools.connectivity.internal.ConnectivityPlugin.getStorageLocation(ConnectivityPlugin.java:191)
at org.eclipse.datatools.connectivity.internal.ConnectionProfileMgmt.getStorageLocation(ConnectionProfileMgmt.java:1060)
at org.eclipse.datatools.connectivity.oda.profile.internal.OdaProfileFactory.defaultProfileStoreFile(OdaProfileFactory.java:170)
at org.eclipse.datatools.connectivity.oda.profile.OdaProfileExplorer.defaultProfileStoreFile(OdaProfileExplorer.java:138)
at org.eclipse.datatools.connectivity.oda.profile.OdaProfileExplorer.loadProfiles(OdaProfileExplorer.java:292)
at org.eclipse.datatools.connectivity.oda.profile.OdaProfileExplorer.getProfileByName(OdaProfileExplorer.java:537)
at org.eclipse.datatools.connectivity.oda.profile.provider.ProfilePropertyProviderImpl.getConnectionProfileImpl(ProfilePropertyProviderImpl.java:184)
at org.eclipse.datatools.connectivity.oda.profile.provider.ProfilePropertyProviderImpl.getDataSourceProperties(ProfilePropertyProviderImpl.java:64)
at org.eclipse.datatools.connectivity.oda.consumer.helper.ConnectionPropertyHandler.getEffectiveProperties(ConnectionPropertyHandler.java:123)
at org.eclipse.datatools.connectivity.oda.consumer.helper.OdaConnection.getEffectiveProperties(OdaConnection.java:826)
at org.eclipse.datatools.connectivity.oda.consumer.helper.OdaConnection.open(OdaConnection.java:240)
at org.eclipse.birt.data.engine.odaconsumer.ConnectionManager.openConnection(ConnectionManager.java:165)
at org.eclipse.birt.data.engine.executor.DataSource.newConnection(DataSource.java:224)
at org.eclipse.birt.data.engine.executor.DataSource.open(DataSource.java:212)
at org.eclipse.birt.data.engine.impl.DataSourceRuntime.openOdiDataSource(DataSourceRuntime.java:217)
at org.eclipse.birt.data.engine.impl.QueryExecutor.openDataSource(QueryExecutor.java:407)
at org.eclipse.birt.data.engine.impl.QueryExecutor.prepareExecution(QueryExecutor.java:317)
at org.eclipse.birt.data.engine.impl.PreparedQuery.doPrepare(PreparedQuery.java:455)
at org.eclipse.birt.data.engine.impl.PreparedDataSourceQuery.produceQueryResults(PreparedDataSourceQuery.java:190)
at org.eclipse.birt.data.engine.impl.PreparedDataSourceQuery.execute(PreparedDataSourceQuery.java:178)
at org.eclipse.birt.data.engine.impl.PreparedOdaDSQuery.execute(PreparedOdaDSQuery.java:145)
at org.eclipse.birt.report.data.adapter.impl.DataRequestSessionImpl.execute(DataRequestSessionImpl.java:624)
at org.eclipse.birt.report.engine.data.dte.DteDataEngine.doExecuteQuery(DteDataEngine.java:152)
at org.eclipse.birt.report.engine.data.dte.AbstractDataEngine.execute(AbstractDataEngine.java:267)
at org.eclipse.birt.report.engine.executor.ExecutionContext.executeQuery(ExecutionContext.java:1939)
at org.eclipse.birt.report.engine.executor.QueryItemExecutor.executeQuery(QueryItemExecutor.java:80)
at org.eclipse.birt.report.engine.executor.TableItemExecutor.execute(TableItemExecutor.java:62)
at org.eclipse.birt.report.engine.internal.executor.dup.SuppressDuplicateItemExecutor.execute(SuppressDuplicateItemExecutor.java:43)
at org.eclipse.birt.report.engine.internal.executor.wrap.WrappedReportItemExecutor.execute(WrappedReportItemExecutor.java:46)
at org.eclipse.birt.report.engine.internal.executor.l18n.LocalizedReportItemExecutor.execute(LocalizedReportItemExecutor.java:34)
at org.eclipse.birt.report.engine.layout.html.HTMLBlockStackingLM.layoutNodes(HTMLBlockStackingLM.java:65)
at org.eclipse.birt.report.engine.layout.html.HTMLPageLM.layout(HTMLPageLM.java:92)
at org.eclipse.birt.report.engine.layout.html.HTMLReportLayoutEngine.layout(HTMLReportLayoutEngine.java:100)
at org.eclipse.birt.report.engine.api.impl.RunAndRenderTask.doRun(RunAndRenderTask.java:180)
at org.eclipse.birt.report.engine.api.impl.RunAndRenderTask.run    (RunAndRenderTask.java:77)

誰かがこのエラーを見て、正しい方向に向けることができますか?

4

4 に答える 4

1

この問題が発生したとき、私は2つのことを試しました。最初にエラーを解決しましたが、次のエラーに行き着きました。

最初に試したのは、setenv.sh ファイルに次の行を設定することでした。 export CATALINA_OPTS="$CATALINA_OPTS -Djava.io.tmpdir=/opt/local/share/tomcat/apache-tomcat-8.0.8/temp/tmpdir -Dorg.eclipse.datatools_workspacepath=/opt/local/share/tomcat/apache-tomcat-8.0.8/temp/tmpdir/workspace_dtp"

このソリューションは、ローカルの tomcat サーバーにtmpdirおよびディレクトリを作成した後に機能しました。これは、こちらworkspace_dtpのガイダンスに対応して行われました。

しかし、次のエラーにたどり着きました。これは接続プロファイル エラーでした。必要があればまた調べます。問題を再現する方法を知っています。

私が試みた 2 番目のことは、問題を完全に解決することになり、レポート デザイナーがレポート デザイン プロセスで間違ったタイプのデータソースを選択したことに関係していました。全文については、こちらの Eclipse BIRT フォーラムでの私の投稿を参照してください: post

基本的に、レポート タイプが「JDBC データ ソース」に設定されるべきところを「クエリ ビルダの JDBC データベース接続」に設定されていました。参照用の写真を参照してください。Eclipse BIRT の [新しいデータ ソース] ウィンドウ 新しいデータ ソース ウィザード

于 2014-06-20T23:27:38.797 に答える
0

BIRT プラグインをインストールした後、"-clean" オプションを指定して Eclipse を起動するだけです。

明確にするために、私のプロジェクトは BIRT Maven の依存関係から構築されているため、Eclipse の依存関係を使用して実行するべきではありません (レポートの設計を除く) が、...どこかで競合があったと思います...特に org.eclipse.datatools と.connectivity_1.2.4.v201202041105.jar

グローバルな理解のために、移行ガイドに従う必要があります: http://wiki.eclipse.org/Birt_3.7_Migration_Guide#Connection_Profiles

これは、接続プロファイルを使用してデータソース パラメーターを外部化するのに役立ちます。したがって、JDBC パラメータをレポート デザインで直接定義する場合は必要ありません。

于 2013-01-24T12:32:02.870 に答える
0

このプログラムによる方法を使用して、ワークスペース ディレクトリを初期化しました。

@Override
public void initializeEngine() throws BirtException {
    // define eclipse datatools workspace path (required)
    String workspacePath = setDataToolsWorkspacePath();

    // set configuration
    final EngineConfig config = new EngineConfig();
    config.setLogConfig(workspacePath, Level.WARNING);

    // config.setResourcePath(getSqlDriverClassJarPath());

    // startup OSGi framework
    Platform.startup(config); // really needed ?
    IReportEngineFactory factory = (IReportEngineFactory) Platform
            .createFactoryObject(IReportEngineFactory.EXTENSION_REPORT_ENGINE_FACTORY);
    engine = factory.createReportEngine(config);
    engine.changeLogLevel(Level.WARNING);
}

private String setDataToolsWorkspacePath() {
    String workspacePath = System.getProperty(DATATOOLS_WORKSPACE_PATH);
    if (workspacePath == null) {
        workspacePath = FilenameUtils.concat(SystemUtils.getJavaIoTmpDir().getAbsolutePath(), "workspace_dtp");
        File workspaceDir = new File(workspacePath);
        if (!workspaceDir.exists()) {
            workspaceDir.mkdir();
        }
        if (!workspaceDir.canWrite()) {
            workspaceDir.setWritable(true);
        }
        System.setProperty(DATATOOLS_WORKSPACE_PATH, workspacePath);
    }
    return workspacePath;
}

また、この方法で実行時にデータソース パラメータを強制する必要もありました。

private void generateReportOutput(InputStream reportDesignInStream, File outputFile, OUTPUT_FORMAT outputFormat,
        Map<PARAM, Object> params) throws EngineException, SemanticException {
    // Open a report design
    IReportRunnable design = engine.openReportDesign(reportDesignInStream);

    // Use data-source properties from persistence.xml
    forceDataSource(design);

    // Create RunAndRender task
    IRunAndRenderTask runTask = engine.createRunAndRenderTask(design);

    // Use data-source from JPA persistence context
    // forceDataSourceConnection(runTask);

    // Define report parameters
    defineReportParameters(runTask, params);

    // Set render options
    runTask.setRenderOption(getRenderOptions(outputFile, outputFormat, params));

    // Execute task
    runTask.run();
}

private void forceDataSource(IReportRunnable runableReport) throws SemanticException {
    DesignElementHandle designHandle = runableReport.getDesignHandle();

    Map<String, String> persistenceProperties = PersistenceUtils.getPersistenceProperties();
    String dsURL = persistenceProperties.get(AvailableSettings.JDBC_URL);
    String dsDatabase = StringUtils.substringAfterLast(dsURL, "/");
    String dsUser = persistenceProperties.get(AvailableSettings.JDBC_USER);
    String dsPass = persistenceProperties.get(AvailableSettings.JDBC_PASSWORD);
    String dsDriver = persistenceProperties.get(AvailableSettings.JDBC_DRIVER);

    SlotHandle dataSources = ((ReportDesignHandle) designHandle).getDataSources();
    int count = dataSources.getCount();
    for (int i = 0; i < count; i++) {
        DesignElementHandle dsHandle = dataSources.get(i);
        if (dsHandle != null && dsHandle instanceof OdaDataSourceHandle) {
            // replace connection properties from persistence.xml
            dsHandle.setProperty("databaseName", dsDatabase);
            dsHandle.setProperty("username", dsUser);
            dsHandle.setProperty("password", dsPass);
            dsHandle.setProperty("URL", dsURL);
            dsHandle.setProperty("driverClass", dsDriver);
            dsHandle.setProperty("jarList", getSqlDriverClassJarPath());
            // @SuppressWarnings("unchecked")
            // List<ExtendedProperty> privateProperties = (List<ExtendedProperty>) dsHandle
            // .getProperty("privateDriverProperties");
            // for (ExtendedProperty extProp : privateProperties) {
            // if ("odaUser".equals(extProp.getName())) {
            // extProp.setValue(dsUser);
            // }
            // }
        }
    }
}
于 2015-04-07T11:28:36.993 に答える