vote up 1 vote down star

I m passing multiple attributes in my custom tag like

&lt mytag Firstname="Thadeus" Lastname="Jones" &gt

Then how would I access the individual attributes in the TagHandler class..

Kindly specify any suggestions..

Regards, Vinayak

flag

61% accept rate
If you're still having problems maybe throw up some code samples. – ShaneB Oct 22 '08 at 15:04

2 Answers

vote up 0 vote down check

Hi,

Not really the answer to what you asked, but I hate (ie have never written) TagHandler's but I love tag files. Lets you write custom tags using jsp files. You probably know about them and are not available/applicable - but thought I'd mention them just in case.

link|flag
vote up 2 vote down

In order to access the parameters your TagHandler class should define the private members and provide accessor methods.

public class TagHandler extends TagSupport {
    private String firstName;
    private String lastName;

    public void setFirstName(String firstname) { firstName = firstname; }
    public void setLastName(String lastname) { lastName = lastname;}
}

you can then access the parameters through the TagHandler variables.

public int doStartTag() throws JspException {
    pageContext.getOut().print(lastName + ", " + firstName);
}

If you still have problems double check your naming conventions, the Java interpeter is trying to guess what the setter method is. So if your parameter is "FirstName" than the set method must be "setFirstName" if the parameter is "lastname" the set parameter must be "setlastname". I perfer to follow the former, since it is the standard Java naming convention.

link|flag
Yea.. while I m just doing this stuff, I m getting the error Unable to find the setter method for the attribute: firstname I have specified the attribute name in the tld file.. what might b the problem.. – Vinayak.B Oct 22 '08 at 7:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.