This is an important bit:
javax.servlet.ServletException: javax.servlet.jsp.JspException: java.lang.IllegalStateException: javax.faces.component.UIViewRoot@19ded20 component is not expected. Expected: javax.faces.component.UIData. Perhaps you are missing a tag?
You forgot to wrap the page with JSF tags <f:view>. Your page should look like this:
<%@taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<!DOCTYPE html>
<f:view>
<html lang="en">
<head>
<title>Insert title here</title>
</head>
<body>
Insert content here
</body>
</html>
</f:view>
source
share