Posted By:
Andrea_Martinez
Posted On:
Monday, July 25, 2011 12:36 AM
Hello I got a problem with my app, and I would like to know who can help me. My app show me next messages: Property 'busqueda' not found on type java.lang.String. I think that all my code it is correct, but I dont know what to do. -------- This is part of my home page -------------------- <%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%> <%@taglib prefix="f" uri="http://java.sun.com/jsf/core" %> <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> > ----------------------------------------------------------- -------------This is par
More>>
Hello
I got a problem with my app, and I would like to know who can help me.
My app show me next messages: Property 'busqueda' not found on type java.lang.String.
I think that all my code it is correct, but I dont know what to do.
-------- This is part of my home page --------------------
<%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
<%@taglib prefix="f" uri="http://java.sun.com/jsf/core" %>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> >
-----------------------------------------------------------
-------------This is part of my Bean---------------------
private String busqueda;
private Empresa emp;
/** Creates a new instance of BuscadorManagedBean */
public BuscadorManagedBean() {
}
/**
* @return the busqueda
*/
public String getBusqueda() {
return busqueda;
}
/**
* @param busqueda the busqueda to set
*/
public void setBusqueda(String busqueda) {
this.busqueda = busqueda;
}
----------------------------------------------------------
Thank you