首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

浅析struts-config.xml资料

2012-10-07 
浅析struts-config.xml文件?xml version1.0 encodingISO-8859-1 ?!DOCTYPE struts-config PUBLIC

浅析struts-config.xml文件

<?xml version="1.0" encoding="ISO-8859-1" ?>

<!DOCTYPE struts-config PUBLIC
????????? "-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"
????????? "http://struts.apache.org/dtds/struts-config_1_3.dtd">
<struts-config>

?<form-beans>
? <form-bean name="regForm"
?? type="cn.itcast.web.struts.forms.RegForm"/>
?</form-beans>

//有<form-beans>节点就有FormBeanConfig类与之对应,在这个类中有相应的方法和属性
//例如:有,属性:name,type等。方法:getName(),setName(),getType(),setType()等方法
?
?<action-mappings>
?
? <action path="/reg"
?? type="cn.itcast.web.struts.actions.RegAction"
?? name="regForm"
?? input="/user-reg.jsp">
?? <forward name="success" path="/reg-success.jsp"/>
? </action>
?
?</action-mappings>
// 有<action-mappings>节点就有相应的ActionConfig类与之对应,在这个类中有相应的方法和属
// 性,例如:属性:path,type,方法:getPath(),setPath,getInput() 等等

?<message-resources parameter="MessageResources"></message-resources>

// 有<message-resources>节点就有MessageResourcesConfig类与之对应,在这个类中有相应的// 方法和属性。例如:setParameter(),getParameter()等等
</struts-config>

?

?

注:对于配置文件,框架都会有相应的类与之对应,使配置文件中的属性值都变成了各个类中的属性值,执行时通过get方法得到。

热点排行