在 ActivePivot 5.0 中,我正在监视一个包含要注入数据存储区的数据的文件。我希望有这个单一的入口点,并且文件的每次更改都会更新或插入新数据。
这是我对文件主题的配置:
@Bean
public CSVSource csvSource() {
// Define source
final CSVSource source = new CSVSource();
final List<String> productFileColumns = Arrays.toList("a", "b", "c");
final ICSVTopic myTopic = source.createTopic("myTopic", "path/to/my/file");
myTopic.getParserConfiguration().setSeparator(";");
source.addTopic(myTopic);
// some configuration of the csv source (threads, ...)
...
// Define channel factory
final CSVMessageChannelFactory channelFactory = new CSVMessageChannelFactory(csvSource, datastore);
...
// Listen some topics
final Map<String, String> topicsToListen = new HashMap<>();
topicsToListen.put("myTopic_Store", "myTopic");
final Listen<IFileInfo, ILineReader> listener = new Listen<>(channelFactory, topicsToListen);
listener.listen(csvSource);
}
我的代码更新文件:
public void updateFile() {
final Path path = Paths.get("path/to/my/file");
// Write and truncate
Files.write(path, "1;2;3".getBytes(), StandardOpenOption.TRUNCATE_EXISTING);
// Add another data
Files.write(path, "4;5;6".getBytes(), StandardOpenOption.APPEND);
// Add another data
Files.write(path, "7;8;9".getBytes(), StandardOpenOption.APPEND);
}
我的问题是我看到 CSV 源对我的文件进行了多次处理,而我希望每次调用 #updateFile 只处理一次。
注意:现在,我想使用 Java 更新我的文件,而不是手动或使用其他语言。
谢谢您的帮助。