Potresti provare a eseguire ssh binary da Java? Ad esempio:
Runtime rt = Runtime.getRuntime();
Process pr = rt.exec("ssh -L 1234:localhost:3306 mysql.server.remote");
Ovviamente, ciò richiede che un sistema abbia ssh installato in un PERCORSO.
Potresti provare a eseguire ssh binary da Java? Ad esempio:
Runtime rt = Runtime.getRuntime();
Process pr = rt.exec("ssh -L 1234:localhost:3306 mysql.server.remote");
Ovviamente, ciò richiede che un sistema abbia ssh installato in un PERCORSO.