Laden Sie eine Datei vom ClassPath Spring Start
public void testResourceFile() throws IOException {
File resource = new ClassPathResource("test.json").getFile();
String text = new String(Files.readAllBytes(resource.toPath()));
}
Fancy Doll