In the 2nd example code of BeeServlet we have in method init():
I do not quite understand what the first parameter ("default") is doing exactly.
In the API I read:
actionKey - The text that will be sent in the servlet parameter to kick off this action.
I think that init() starts class Default which then runs it's doAction() method. But what could class Default then do with param "default"?
Or would servletData be able to do something with it? And if yes, what??
Thank you for any enlightening hints!