我是Java EE的新手,我正在关注oracle的官方java ee的pdf文档。 由于文档的复杂性,我面临一些问题。 我的问题实际上是当我运行.jsf页面时它没有显示表单(输入和提交按钮) 但它显示了所有其他的东西......
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html">
<h:head>Bienvenue</h:head>
<h:body>
<h:form>
<p>test</p>
<h:inputText id="username" title="My name is: " value="coucou" required="true" maxlength="25" />
<h:commandButton id="submit" value="Submit" action="response"/>
</h:form>
</h:body>
</html>
P.S:我正在使用NetBeans 8。