5.6.8 Startup Arguments - Reference Documentation
Authors: Andres Almiray
Version: 1.2.0
5.6.8 Startup Arguments
Command line arguments can be passed to the application and be accessed by callinggetStartupArgs()
on the application instance. This will return a copy of the args (if any) defined at the command line.Here's a typical example of this feature in development modegriffon run-app arg0 arg1 argn
griffon dev package jar
java -jar dist/jars/app.jar arg0 arg1 argn