Answers for "application.xml file is in resources folder in spring boot app"

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 "application.xml file is in resources folder in spring boot app"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language