struts-config.xml
来自「struts标签库范例 nested标签库」· XML 代码 · 共 31 行
XML
31 行
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE struts-config PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"
"http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
<struts-config>
<form-beans>
<form-bean name="PersonForm" type="nestedtaglibs.PersonForm"/>
</form-beans>
<!-- ========== Global Forward Definitions ============================== -->
<global-forwards>
<forward name="Nested" path="/Nested.jsp"/>
</global-forwards>
<action-mappings>
<action path="/showPerson"
name="PersonForm"
type="org.apache.struts.actions.ForwardAction"
validate="false"
scope="request"
parameter="/ShowPerson.jsp">
</action>
</action-mappings>
</struts-config>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?