I initialize in Init.java

/**
* Person
*/
Person person = new Person ("Rodolfo", "Avila");
sce.getServletContext().setAttribute("person", person);



/*-----------------------------------------*/

Package (org.apache.taglibs.standard.examples.beans.Person)

public class Person {

    //*********************************************************************
    // Instance variables

    /** Holds value of property name. */
    public Name name;


    //*********************************************************************
    // Constructors

    public Person() {}

    public Person(String firstName,String lastName){

    name = new Name();
    name.setFirstName(firstName);
    name.setLastName(lastName);
    System.out.println("Nombre : " + firstName);
    System.out.println("Apellido : " + lastName);
    //name.getName();
    }
}

// it works well because the outputs are ok




/*-----------------------------------------*/

Package (org.apache.taglibs.standard.examples.beans.Person)

public class Name {

    public String firstName;
    public String lastName;

    public void setFirstName(String firstName){
        this.firstName = firstName;
    }
    public void setLastName (String lastName){
        this.lastName = lastName;
    }

    public String getFirstName(){
        return firstName;
    }

    public String getLastName(){
        return lastName;
    }

}

/*-----------------------------------------*/

response.jsp


<table border="1">
    <tr>
       <td>FirstName and LastName : </td>
       <td><c:out value="${person.name.firstname}"/></td>
       <td><c:out value="${person.name.lastname}"/></td>
    </tr>
</table>


When i run the application this error message appears:


'org.apache.taglibs.standard.examples.beans.Person' does not have 'name'
property.


Some help

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Java 
EE (J2EE) Programming with Passion!" group.
To post to this group, send email to 
java-ee-j2ee-programming-with-passion@googlegroups.com
To unsubscribe from this group, send email to 
java-ee-j2ee-programming-with-passion+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/java-ee-j2ee-programming-with-passion?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to