• 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

Can't find matching setter method for JSF/Seam form tag

 
Ranch Hand
Posts: 62
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In this code is a call to the customerSession.setSelectedAddress(null) method...
This is so we can add a new address even if we already have one.




On the backend is:


I am getting a warning on the front end code, saying "setSelectedAddress" cannot be resolved.

What does that mean and how can I fix it please.

Thanks much,

p.s. JBOSS developer studio classifies it as Type Validation Message problem.

Dan
 
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is this Spring, or what?
 
David Newton
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Also, please see UseAMeaningfulSubjectLine.
 
Dan Acuff
Ranch Hand
Posts: 62
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

David Newton wrote:Is this Spring, or what?



Well on the front End we are using JSF/SEAM. The EL (expression language is being used so I don't know if it is SEAM per se) It is all too new to me.

On the backend this particular bean is a Session bean.

 
David Newton
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Here's an example of a meaningful subject line: "Can't find matching setter method for JSF/Seam form tag" or something similar.

"A method cannot be resolved" could be related to *anything*.
 
Dan Acuff
Ranch Hand
Posts: 62
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This problem has been resolved.

It did turn out to be a JSF issue as a senior programmer made a front-end change to use an <h:commandLink> instead of <s:link>
 
reply
    Bookmark Topic Watch Topic
  • New Topic