All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.frameworkset.platform.portal.PortalProperties Maven / Gradle / Ivy

There is a newer version: 5.6.4
Show newest version
package com.frameworkset.platform.portal;

import java.io.File;

import org.frameworkset.spi.BaseSPIManager2;

/** 
 * 

类说明:portal相关的配置属性

*

Copyright: Copyright (c) 2009

*

Company: bbossgroups

* @author gao.tang * @version V1.0 创建时间:Oct 19, 2009 9:42:17 AM */ public class PortalProperties { /** * 应用部署的目录 */ public static final String APPROOT = BaseSPIManager2.getProperty("approot"); /** * portal iframe模板文件发布目录路径 */ public static final String PORTAL_ISSUEPATH_WAR = BaseSPIManager2.getProperty("portal.issuepath.war", APPROOT+"/portal/issue_war"); static{ File file = new File(PORTAL_ISSUEPATH_WAR); if(!file.exists()){ file.mkdirs(); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy