struts-config.xml~7~

来自「深入浅出的介绍j2ee的相关基本知识」· XML~7~ 代码 · 共 13 行

XML~7~
13
字号
<?xml version="1.0" encoding="UTF-8"?>
<!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="queryForm" type="cpstruts.QueryForm" />
  </form-beans>
  <action-mappings>
    <action input="/query.jsp" name="queryForm" path="/queryAction" scope="request" type="cpstruts.QueryAction" validate="false">
      <forward name="result" path="/result.jsp" redirect="false" />
    </action>
  </action-mappings>
</struts-config>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?