how to run springboots processbuilder

Solutions on MaxInterview for how to run springboots processbuilder by the best coders in the world

showing results for - "how to run springboots processbuilder"
Sofia
07 Jan 2021
1@PostConstruct
2	public void doLog()throws IOException {
3		ProcessBuilder processBuilder = new ProcessBuilder();
4		processBuilder.command("python3","hello.py");
5		processBuilder.directory(new File("src"));
6
7		processBuilder.start();
8		log.info("the services is running");
9	}
similar questions
queries leading to this page
how to run springboots processbuilder