• 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

JSF2 javax.el.PropertyNotFoundException property not found on type

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hy I am using

- JSF 2.0
- JDK 7
- Linux - Ubuntu 13.04
- Primefaces 4

and the problem is that I am facing **javax.el.PropertyNotFoundException** I have tried/searched everything I could from forums/help-sections/etc, but I am not able to understand where I am going wrong kindly guide. Below are my Exception Details


my web page



my backing bean is




my faces-config.xml

 
Saloon Keeper
Posts: 27808
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Because you've overlaid the session-scope variable "sectionBean" with a table "var" index that is also named "sectionBean", which hides the original object and its properties.

I usually name my row index variable something clever like "row" or "item" or something like that.

The presence of a login bean in your app tells me it's almost certainly a security breach waiting to happen, too, but that's another story.
reply
    Bookmark Topic Watch Topic
  • New Topic