这里我试图使用Spring / Hibernate制作Java Web MVC。有些处理它是从net beans向导生成的。
index.xhtml
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://xmlns.jcp.org/jsf/html" xmlns:p="http://primefaces.org/ui">
<h:head>
<title>Facelet Title</title>
</h:head>
<h:body>
Sistem Informasi Sekolah
<br />
<h:link outcome="welcomePrimefaces" value="Primefaces welcome page" />
<h:form>
<p:commandButton action="#{indexController.moveToPageSiswa}" value="Informasi Siswa" />
</h:form>
</h:body>
</html>
但结果只显示
Sistem Informasi Sekolah
并且没有显示按钮。
在我尝试修改代码后会发生这种情况。