• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Struts taglib error

 
Ranch Hand
Posts: 146
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi ALL,
Am working on Struts stuff, while adding a html:text tag in jsp program, am getting the following error
No getter method for property "userKeyword" of bean org.apache.struts.taglib.html.BEAN
userKeyword is property of html:text. pls advise me.
Thanks
Jowsaki
 
Ranch Hand
Posts: 32
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi ALL,
Am working on Struts stuff, while adding a html:text tag in jsp program, am getting the following error
No getter method for property "userKeyword" of bean org.apache.struts.taglib.html.BEAN
userKeyword is property of html:text. pls advise me.
Thanks
Jowsaki
your form bean must have the set,get method for userKeyword
(ie) your form bean must have

private String _userKeyword;
public void setUserKeyword(String userKeyword){
_userKeyword = userKeyword;
}
public String getUserKeyword(){
return _userKeyworkd;
}
These Methods
May this help you
Thanx
Kalaiselvan.S
 
Sham Jowsaki
Ranch Hand
Posts: 146
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you. Workin pretty..
Cheers
jowsaki
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic