📄 newactionmappingform.jsp
字号:
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<c:if test="${jtReply != null}">
<c:set var="actionMappingForm" value="${jtReply}" scope="request" />
</c:if>
<html:form action="CreateActionMapping?jtMsgId=CREATE" >
<fieldset>
<legend> New Action Mapping</legend>
<br />
<label>*Path:</label>
<html:text property="path" size="50"/>
<br />
<br />
<label>*Type:</label>
<html:text property="type" value="Jt.struts.JtStrutsAction" size="50"/>
<br />
<br />
<label>Name:</label>
<html:text property="name" size="50"/>
<br />
<br />
<label>Input:</label>
<html:text property="input" size="50"/>
<br />
<br />
<label>Scope:</label>
<html:select property="scope">
<html:option value="request">request</html:option>
<html:option value="session">session</html:option>
</html:select>
<br />
<br />
<label>Cancellable:</label>
<html:select property="cancellable" value="false">
<html:option value="true">true</html:option>
<html:option value="false">false</html:option>
</html:select>
<br />
<br />
<label>Validate:</label>
<html:select property="validate">
<html:option value="true">true</html:option>
<html:option value="false">false</html:option>
</html:select>
<br />
<br />
<label>Parameter:</label>
<html:text property="parameter" size="50"/>
<br />
<br />
<label>Forward (success):</label>
<html:text property="forwardSuccess" size="50"/>
<br />
<br />
<label>Forward (failure):</label>
<html:text property="forwardFailure" size="50"/>
<br />
<br />
<label>Forward (cancel):</label>
<html:text property="forwardCancel" size="50"/>
<br />
<br />
<hr />
<html:submit />
<html:cancel />
</fieldset>
</html:form>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -