Answers for "how to get resources as stream from claaspath in spring boot"

1

load a file from classpath spring boot

public void testResourceFile() throws IOException {
		File resource = new ClassPathResource("test.json").getFile();
		String text = new String(Files.readAllBytes(resource.toPath()));
	}
Posted by: Guest on June-19-2020

Code answers related to "how to get resources as stream from claaspath in spring boot"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language