String[] interceptedAllow = null;
String[] interceptedDeny = null;
ModuleResource parentModule = local.moduleResourceMap.get(candidate.getParent());
// 如果rose.properties设置了controllers的module.path?
FileObject rosePropertiesFile = candidate.getChild("rose.properties");
if (rosePropertiesFile != null && rosePropertiesFile.exists()) {
Properties p = new Properties();
InputStream in = rosePropertiesFile.getContent().getInputStream();
p.load(in);
in.close();
// 如果controllers=ignored,则...
String ignored = p.getProperty(CONF_MODULE_IGNORED, "false").trim();