我仅在Docker容器中运行的应用程序中在AkkaStream中使用XmlDecoder时遇到了问题。
错误描述
java.lang.ClassNotFoundException: com/example/xmldecoder/FileDto
Continuing ...
java.lang.ClassNotFoundException: com/example/xmldecoder/FileDto
Continuing ...
java.lang.NoSuchMethodException: <unbound>=XMLDecoder.new();
Continuing ...
java.lang.NoSuchMethodException: <unbound>=XMLDecoder.new();
Continuing ...
java.lang.IllegalStateException: The outer element does not return value
Continuing ...
java.lang.IllegalStateException: The outer element does not return value
Continuing ...
java.lang.IllegalStateException: The outer element does not return value
Continuing ...
java.lang.IllegalStateException: The outer element does not return value
Continuing ...
2019-05-22 09:42:29.145 ERROR 1 --- [onPool-worker-5] com.example.xmldecoder.FileReader : Unexpected exception in load file, {}
java.lang.ArrayIndexOutOfBoundsException: Index 0 out of bounds for length 0
at java.desktop/java.beans.XMLDecoder.readObject(XMLDecoder.java:251) ~[na:na]
at com.example.xmldecoder.FileReader.lambda$loadFile$0(XmlDecoderApplication.java:66) ~[classes!/:0.0.1-SNAPSHOT]
at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) ~[na:na]
at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1692) ~[na:na]
at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:290) ~[na:na]
at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1020) ~[na:na]
at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1656) ~[na:na]
at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1594) ~[na:na]
at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:177) ~[na:na]
要满足两个条件:
UseContainerSupport
,ActiveProcessorCount
),但没有帮助代码
可运行的示例可用here
以下问题代码:
@Slf4j
@RequiredArgsConstructor
class FileReader {
private final ActorSystem system;
private final ReadJob readJob;
public NotUsed loadFiles() {
List<String> paths = listFiles(readJob);
return Source.from(paths)
.via(Flow.of(String.class).mapAsync(5, p -> loadFile(p)))
.to(Sink.foreach(System.out::println)).run(ActorMaterializer.create(system));
}
private CompletionStage<String> loadFile(String filePath) {
return CompletableFuture.supplyAsync(() -> {
try {
FileInputStream fis2 = new FileInputStream(filePath);
BufferedInputStream bis2 = new BufferedInputStream(fis2);
XMLDecoder xmlDecoder = new XMLDecoder(bis2);
FileDto mb = (FileDto) xmlDecoder.readObject();
log.info("Decoder: {}", mb);
return mb.toString();
} catch (Exception e) {
log.error("Unexpected exception in load file, {}", e);
throw new RuntimeException("Unexpected exception in load file", e);
}
});
}
private List<String> listFiles(ReadJob readJob) {
File folder = new File(readJob.getHolderDirPath().toString());
File[] listOfFiles = folder.listFiles();
log.info(listOfFiles.toString());
return Stream.of(listOfFiles).map(File::getAbsolutePath).collect(Collectors.toList());
}
}
例如可以这样运行:
@SpringBootApplication
@EnableScheduling
@Slf4j
public class XmlDecoderApplication {
private Path holderPath = Paths.get("opt", "files_to_load");
public static void main(String[] args) {
SpringApplication.run(XmlDecoderApplication.class, args);
}
@Scheduled(fixedDelay = 30000, initialDelay = 1000)
public void readFiles() {
FileReader reader = new FileReader(ActorSystem.create(), new ReadJob(holderPath));
reader.loadFiles();
}
}
我想根本原因是主机<->码头工人<-> java
之间在此先感谢您的帮助
答案 0 :(得分:3)
示例代码通过以下修改为我工作:替换行
XMLDecoder xmlDecoder = new XMLDecoder(bis2);
使用
XMLDecoder xmlDecoder = new XMLDecoder(bis2, null, null, FileDto.class.getClassLoader());
即有效地迫使XMLDecoder
使用用于加载相关类的精确类加载器。但至于为什么只发生
--cpus
设置为某某大于1 –我只有一些(大部分)没有根据的猜测。