您的位置:首页 > 编程语言 > Java开发

struts标签库:bean:write struts-config.xml

2012-08-23 08:42 405 查看
<?xml version="1.0" encoding="UTF-8" ?>

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

<struts-config>

<action-mappings>
<action path="/beanwrite"
type="com.bjpowernode.struts.BeanWriteTestAction"
>
<forward name="success" path="/bean_write.jsp"/>
</action>

<action path="/empty_present"
type="com.bjpowernode.struts.EmptyPresentTestAction"
>
<forward name="success" path="/empty_present.jsp"/>
</action>

<action path="/iterate"
type="com.bjpowernode.struts.IterateTestAction"
>
<forward name="success" path="/iterate.jsp"/>
</action>
</action-mappings>

<message-resources parameter="MessageResources" />

</struts-config>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: