📄 helloworld.jsp
字号:
<%@ 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -