很多struts-config.xml中的“input="input"”是个什么意思啊?
6.在李刚的项目书中经常看到如下配置:
  1.<action path="/processLogin"
  2.        name="loginForm"
  3.        scope="request"
  4.        validate="true"
  5.        input="input">
  6.      <forward name="input" path="/WEB-INF/jsp/login.jsp"/>
  7.      <forward name="mgr" path="/WEB-INF/jsp/manager/index.jsp"/>             
  8.      <forward name="emp" path="/WEB-INF/jsp/employee/index.jsp"/>
  9.      <forward name="failure" path="/WEB-INF/jsp/login.jsp"/>
  10.</action>请问上面代码的第5行“input="input"”是个什么意思啊?