Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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;
share|improve this question
I have no idea what you're asking or are struggling with. Please elaborate. – BalusC May 13 '11 at 12:34
Sory, I 'm new to jsf and try to understand what happens :)I want to take the user input value at controller class (from jsp page with submit button)... the variable (read from jsp) can be defined on bean, not controller class? – seyma May 13 '11 at 13:07
Aha, you got a PropertyNotFoundException: target unreachable, identifier resolved to null or 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

1 Answer

up vote 2 down vote accepted

When using nested bean properties, then you need to prepare it yourself so that JSF can call the setters on it. JSF/EL namely won't prepare them for you.

public class Control {

    private User userObj;

    public Control() {
        userObj = new User();
    }

    // ...
}

This way #{control.userObj.userName} will work in input fields.

See also:

share|improve this answer
Thanks for reply, I defined getter and setter at bean class, I have tried now ; <h:inputText value="#{control.userObj.userName}"></h:inputText> and at controller I create with "new" (as you said) and called " if(userObj.getUserName().equals("seyma"))" and the exception is: javax.faces.el.PropertyNotFoundException: Error testing property 'userName' in bean of type null.. – seyma May 13 '11 at 13:26
Then the #{control.userObj} is still null. So you have not saved the changes or not redeployed the webapp or not restarted the server. Or the getUserObj() returns null instead of userObj. Follow the tutorial link to get started and to grasp the basic concepts. – BalusC May 13 '11 at 13:35
ok, thank you for replies, the link will be good to understand :) – seyma May 13 '11 at 13:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.