Ben Chuanlong Du's Blog

It is never too late to learn.

Use Scala With Picocli

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

It is easy to make mistakes due to type of parameters when use picocli in Scala. It is suggested that you

  1. Have all parameters prepared before using them.

  2. manually specify types of arguments when preparing parameters.

  3. Never use args("some-parameters") directly.

Comments