spring boot process builder that executes a command line command with no paths code example
Example: how to run springboots processbuilder
@PostConstruct
public void doLog()throws IOException {
ProcessBuilder processBuilder = new ProcessBuilder();
processBuilder.command("python3","hello.py");
processBuilder.directory(new File("src"));
processBuilder.start();
log.info("the services is running");
}