I want to learn that if I can define user input parameters at bean class and take these input parameters from a controller function with submit button :
for example input jsp :
<h:inputSecret value="#{control.userObj.pwrd}"></h:inputSecret>
<h:commandButton type="submit" value="Giris" action="#{control.check}">
</h:commandButton>
"User" bean class :
private String userName; (with getter and setter)
"Control" controller class :
private User userObj;
PropertyNotFoundException: target unreachable, identifier resolved to nullor something when submitting? If you are unable to understand the exception you got, you should include it in your question. Exceptions are namely very important to help understanding the cause of the problem. We can explain them to you in layman's terms so that you are able to understand the underlying problem. – BalusC May 13 '11 at 13:19