struts-config.xml~12~
来自「这个是j2eejava web 编程精要十五讲的全部源码。对学习java web」· XML~12~ 代码 · 共 18 行
XML~12~
18 行
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.0//EN"
"http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd">
<struts-config>
<form-beans>
<form-bean name="loginActionForm" type="login.loginActionForm" />
</form-beans>
<action-mappings>
<action name="loginActionForm" type="login.loginAction"
validate="false" input="/login.jsp"
scope="request" path="/loginAction" >
<forward name="Success" path="/main.jsp"/>
<forward name="Fail" path="/register.jsp"/>
</action>
</action-mappings>
<!--message-resources parameter="ApplicationResources"/-->
</struts-config>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?