I\'m developing a JSF web application with PrimeFaces 3.5 on Eclipse 4.3. There are no compiletime or runtime errors and the application deploys successfully. However, I can
1.
When ever you are referring to Managed Bean properties from JSF components, use correct syntax for JSF EL statements.
#{bean_name.property}
In your code you are forgetting to provide #{}.
For example at line #15 in login.xhtml use :
2.
You are keeping inside . Its not a good practice.
Keep out side .
Actual structure would be:
3.
You may be getting exception in ManagedBean LoginBean.java class.
Please post the code instead of screenshots.