struts-config-login.xml.svn-base
上传用户:liangcc
上传日期:2019-05-24
资源大小:4412k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

Java

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.3//EN" "http://struts.apache.org/dtds/struts-config_1_3.dtd">
  3. <struts-config>
  4.   <form-beans >     <form-bean name="loginForm" type="com.softeem.struts.form.LoginForm" />   </form-beans>
  5.   <global-exceptions />
  6.   <global-forwards />
  7.   <action-mappings >     <action       attribute="loginForm"       input="/login.jsp"       name="loginForm"       path="/login"       scope="request"       type="com.softeem.struts.action.LoginAction">
  8.       <forward name="failed" path="/login.jsp" />
  9.       <forward name="success" path="/main.jsp" />
  10.     </action>   </action-mappings>
  11. </struts-config>