在监听器 PortalContextLoaderListener调用contextInitialized() 方法后。再去加载 上下文参数 contextClass 对应的 com.liferay.portal.spring.context.PortalApplicationContext 类并调用loadBeanDefinitions方法加载资源文件。在加载资源文件时,先去PropsUtil 类中得到spring 的配置文件数组。
PropsKeys 类定义了liferay Portal 相关配置文件的Key。 Key 一般来自portal.properties 以其的扩展配置文件。
PropsKeys.SPRING_CONFIGS 的值是 “spring.configs” 该键值就存储在 Portal.properties 文件中。
PropsUtil是一个单实例类 调用 getArray() 方法前初始static 代码块。加载自身的实例以及调用 私有构造函数
在上面的构造函数中调用了
是将 liferay.home目录设置到系统的配置项中
然后在初始化ConfigurationImpl 类。该类会加载portal 所有的配置文件。
在 ConfigurationImpl构造方法中加载 portal.properties 文件的相关配置。
在 getArray(String key) 方法中 会调用 ConfigurationImpl 的 getArray()方法。ConfigurationImpl 类中引用了easyconf 组件。使用easyconf 加载 portal.properties 文件。
String[] configLocations = PropsUtil.getArray(PropsKeys.SPRING_CONFIGS);PropsKeys 类定义了liferay Portal 相关配置文件的Key。 Key 一般来自portal.properties 以其的扩展配置文件。
PropsKeys.SPRING_CONFIGS 的值是 “spring.configs” 该键值就存储在 Portal.properties 文件中。
PropsUtil是一个单实例类 调用 getArray() 方法前初始static 代码块。加载自身的实例以及调用 私有构造函数
private PropsUtil() {
SystemProperties.set("default.liferay.home", _getDefaultLiferayHome());
_configuration = new ConfigurationImpl(
PropsUtil.class.getClassLoader(), PropsFiles.PORTAL);
String liferayHome = _get(PropsKeys.LIFERAY_HOME);
SystemProperties.set(
"ehcache.disk.store.dir", liferayHome + "/data/ehcache");
if (GetterUtil.getBoolean(
SystemProperties.get("company-id-properties"))) {
_configurations = new HashMap<Long, Configuration>();
}
}在上面的构造函数中调用了
SystemProperties.set("default.liferay.home", _getDefaultLiferayHome());是将 liferay.home目录设置到系统的配置项中
然后在初始化ConfigurationImpl 类。该类会加载portal 所有的配置文件。
在 ConfigurationImpl构造方法中加载 portal.properties 文件的相关配置。
在 getArray(String key) 方法中 会调用 ConfigurationImpl 的 getArray()方法。ConfigurationImpl 类中引用了easyconf 组件。使用easyconf 加载 portal.properties 文件。
本文解析了Liferay在启动过程中如何加载配置文件的具体流程。重点介绍了PortalContextLoaderListener监听器的作用,以及通过PropsUtil获取配置文件的过程。深入探讨了PropsUtil内部实现机制,包括ConfigurationImpl类的初始化过程。
2411

被折叠的 条评论
为什么被折叠?



