これは、次の質問の続きです。スクリプトまたはその型システムをクラスパスに配置せずに、maven プロジェクトから外部 ruta スクリプトを実行する方法は?
プログラムで分析エンジンを (パラメーター値を変更して) 再構成する方法を教えてください。
これは、次の質問の続きです。スクリプトまたはその型システムをクラスパスに配置せずに、maven プロジェクトから外部 ruta スクリプトを実行する方法は?
プログラムで分析エンジンを (パラメーター値を変更して) 再構成する方法を教えてください。
状況: UIMA Ruta 分析エンジンの正しい xml 記述子があり、パスが descriptor.java url to file のフォルダーを指すように再構成したい場合
次のコードは、さまざまな段階でパラメーター値を変更することによってそれを示しています。必要なステージは 1 つだけです。どちらが正しいかは、コードによって異なります。
package example;
import java.io.File;
import java.net.URL;
import org.apache.uima.analysis_engine.AnalysisEngine;
import org.apache.uima.analysis_engine.AnalysisEngineDescription;
import org.apache.uima.fit.factory.AnalysisEngineFactory;
import org.apache.uima.resource.metadata.ConfigurationParameterSettings;
import org.apache.uima.ruta.engine.RutaEngine;
public class ReconfigureExample {
public static void main(String[] args) throws Exception {
File file = new File("path to descriptor");
String path = new File(file.toURI()).getParentFile().getAbsolutePath();
String[] pathsArray = new String[] { path };
// override the values in the descriptor when creating the description
AnalysisEngineDescription desc = AnalysisEngineFactory.createEngineDescriptionFromPath(
file.getAbsolutePath(), RutaEngine.PARAM_SCRIPT_PATHS, pathsArray,
RutaEngine.PARAM_DESCRIPTOR_PATHS, pathsArray, RutaEngine.PARAM_RESOURCE_PATHS,
pathsArray);
// in case the location of the descriptor is not known...
URL sourceUrl = desc.getSourceUrl();
path = new File(sourceUrl.toURI()).getParentFile().getAbsolutePath();
pathsArray = new String[] { path };
// set the values in the description
ConfigurationParameterSettings settings = desc.getAnalysisEngineMetaData()
.getConfigurationParameterSettings();
settings.setParameterValue(RutaEngine.PARAM_SCRIPT_PATHS, pathsArray);
settings.setParameterValue(RutaEngine.PARAM_DESCRIPTOR_PATHS, pathsArray);
settings.setParameterValue(RutaEngine.PARAM_RESOURCE_PATHS, pathsArray);
// override the values in the descriptor when creating the analysis engine
AnalysisEngine ae = AnalysisEngineFactory.createEngine(desc, RutaEngine.PARAM_SCRIPT_PATHS, pathsArray,
RutaEngine.PARAM_DESCRIPTOR_PATHS, pathsArray, RutaEngine.PARAM_RESOURCE_PATHS,
pathsArray);
// set the values in the analysis engine and reconfigure it
ae.setConfigParameterValue(RutaEngine.PARAM_SCRIPT_PATHS, pathsArray);
ae.setConfigParameterValue(RutaEngine.PARAM_DESCRIPTOR_PATHS, pathsArray);
ae.setConfigParameterValue(RutaEngine.PARAM_RESOURCE_PATHS, pathsArray);
ae.reconfigure();
}
}
免責事項: 私は UIMA Ruta の開発者です