24 lines
447 B
Java
24 lines
447 B
Java
package cn.config.model;
|
|
|
|
import java.util.Properties;
|
|
|
|
/**
|
|
* È«¾ÖÅäÖÃÀà
|
|
* @author cytsir
|
|
*
|
|
*/
|
|
public class GlobalConfigure extends Properties{
|
|
private static final long serialVersionUID = -4277072920980235842L;
|
|
private static GlobalConfigure instance = null;
|
|
|
|
private GlobalConfigure(){
|
|
}
|
|
|
|
public synchronized static GlobalConfigure getInstance(){
|
|
if(instance==null){
|
|
instance = new GlobalConfigure();
|
|
}
|
|
return instance;
|
|
}
|
|
}
|