Your Internet Explorer version is not compatible with our shopping cart system. Please use version 9 or higher to avoid problems with your order(s). Close
Dennie,
A managed property has to be instantiatable (sp?) in order for the value to be set. For example if you were to use a hard value here, like: “Bob Williams”, and your property was not a String, and instead a CharSequence, it would be impossible for JSF to set that property for you at runtime which is what it is suppose to be able to do.
I understand the basics of managed beans. And if you check the config file, it uses a Impl(!) class which instantiates the property. By the way: This config works in JSF (myfaces).
This is also very useful because I like to keep my source clean and work with interface properties instead of the hard implementing class. The red cross in my project just annoys me.