Sequence of Project Deployment in Mule -


does know in sequence, mule project loaded when mule starts-up? doesn't seem in alphabetical order or last updated time.

if @ class muledeploymentservice, can see following:

string appstring = (string) options.get("app");  if (appstring == null) {     string[] explodedapps = appsdir.list(directoryfilefilter.directory);     string[] packagedapps = appsdir.list(zip_apps_filter);      deploypackedapps(packagedapps);     deployexplodedapps(explodedapps); } else {     string[] apps = appstring.split(":"); 

description method file.list states "there no guarantee name strings in resulting array appear in specific order". so, guess answer in no particular order, or in order listed in using -app option.


Comments

Popular posts from this blog

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -

php - Magento - Deleted Base url key -

android - How to disable Button if EditText is empty ? -