You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@myfaces.apache.org by Tom Butler <to...@adelphia.net> on 2006/01/27 05:01:52 UTC

no renderer found for component?

I have a very straightforward .JSP page that uses myfaces/tomahawk -when the
page is loaded in Tomcat, I receive the following warnings - am I missing a
configuration item or what are the common causes?

 

 

Jan 26, 2006 10:55:43 PM org.apache.catalina.core.ApplicationContext log

INFO: No state saving method defined, assuming default server state saving

Jan 26, 2006 10:55:43 PM org.apache.myfaces.renderkit.html.HtmlRenderKitImpl
getRenderer

WARNING: Unsupported component-family/renderer-type:
javax.faces.ViewRoot/javax.faces.Text

Jan 26, 2006 10:55:43 PM org.apache.catalina.core.ApplicationContext log

INFO: No Renderer found for component {Component-Path : [Class:
javax.faces.component.UIViewRoot,ViewId: /enrollisp.jsp]}
(component-family=javax.faces.ViewRoot, renderer-type=javax.faces.Text)

Jan 26, 2006 10:55:43 PM javax.faces.component.UIComponentBase getRenderer

WARNING: No Renderer found for component {Component-Path : [Class:
javax.faces.component.UIViewRoot,ViewId: /enrollisp.jsp]}
(component-family=javax.faces.ViewRoot, renderer-type=javax.faces.Text)

Jan 26, 2006 10:55:43 PM org.apache.myfaces.renderkit.html.HtmlRenderKitImpl
getRenderer

WARNING: Unsupported component-family/renderer-type:
javax.faces.ViewRoot/javax.faces.Text

 

.JSP Snippet:

 

<%@taglib uri="http://java.sun.com/jsf/core" prefix="f"%>

<%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%>

<%@taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>

<html>

<head>

<%@include file="inc/head.inc"%>

<title><h:outputText value="#{msgs.title}"/></title>

</head>

 

      <body>

      <f:view>

         <h:form>

            <h:outputText value="#{msgs.enroll}"/>

            <h:panelGrid columns="2">

            <h:panelGrid columns="3">

               <h:outputLabel for="lastname">

                     <h:outputText value="#{msgs.lastname}"/>

               </h:outputLabel>

               <h:inputText id="lastname" value="#{enrollbean.lastname}"
required="true"> 

               </h:inputText>

               <h:message for="lastname" styleClass="errorMessage"/>

               .. more of the same input components

 

.

.

.