Just found out about Spring Shell, pretty cool stuff!
Is it possible to create a password prompt? I've browsed through the source without finding any references.
Printable View
Just found out about Spring Shell, pretty cool stuff!
Is it possible to create a password prompt? I've browsed through the source without finding any references.
You can do that by directly using the JLine ConsoleReader:
ErwinCode:ConsoleReader cr = new ConsoleReader();
String pwd = cr.readLine('*');