helloworld.jsp

来自「一个使用struts+hibernate+spring开发的完的网站源代码。」· JSP 代码 · 共 14 行

JSP
14
字号
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<f:view>

<h:form id="form">
  <h:panelGrid id="grid" columns="2">
    <h:outputText id="output1" value="Please enter your name"/>
    <h:inputText id="input1" value="#{helloWorldBacking.name}" required="true"/>
    <h:commandButton id="button1" value="press me" action="#{helloWorldBacking.send}"/>
    <h:message id="message1" for="input1"/>
  </h:panelGrid>
</h:form>

</f:view>

⌨️ 快捷键说明

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