config包之PlugInConfig浅析

org.apache.struts.PlugInConfig浅析

在struts-config.xml配置文件中每个都对应着一个PlugInConfig对象
元素用于配置Struts插件
元素中className是指定Struts插件类,插件类必须实现org.apache.struts.action.PlugIn接口,它在PlugInConfig类中对应的属性为String className
可以包含零个或多个元素,该元素是用来设置插件的路径。它在PlugInConfig类中对应的属性为HashMap properties。HashMap中的key和value分别对应元素中的property和value。

PlugInConfig类中对应的className属性有它的get和set方法
PlugInCongig类中对应的properties属性有它的add和get方法

类中方法解析
public class PlugInConfig implements Serializable {

    protected boolean configured = false;

    protected Map properties = new HashMap();

    protected String className = null;

    public String getClassName() {
        return (this.className);
    }

    public void setClassName(String className) {
        this.className = className;
    }

    //HashMap properties中的name和value分别和元素中的property和value对应
    public void addProperty(String name, String value) {
        if (configured) {
            throw new IllegalStateException("Configuration is frozen");
        }
        properties.put(name, value);
    }

    public void freeze() {

        configured = true;

    }

    public Map getProperties() {

        return (properties);

    }

你可能感兴趣的:(properties,hashmap,string,struts,class,null)