I start study Spring MVC and I don't understand some things. Concretely - use JSP. I've worked with Primefaces. And in PrimeFaces I have UI elements - commandButton
, panelGrid
, column
, outputText
, etc. But in JSP I don't have those elements. I have only HTML and JSTL. Are there any tools for building interface in JSP like Primefaces? For example in PrimeFaces:
<h:outputText value="ID: "/>
<p:inputText value="#{QCforCCReportBean.operatorID}"/>
<h:outputText value="Nickname: "/>
<p:inputText value="#{QCforCCReportBean.operatorNickname}"/>
How do it in JSP?