Sanghyun Lee
Sanghyun Lee

Reputation: 23102

How to get boolean property with expression language?

If I have a class like this:

class Person {
  private int age;
  public int getAge() {
    return age;
  }
  public boolean isAdult() {
    return age > 19;
  }
}

I can get the age with EL like this:

${person.age}

But, I cannot figure out how to get the isAdult(). How can I get this?

Upvotes: 4

Views: 8040

Answers (4)

Jigar Joshi
Jigar Joshi

Reputation: 240996

Do it like

${person.adult}

It will invoke isAdult()

It works on java bean specifications.

Upvotes: 6

aroth
aroth

Reputation: 54854

Doing ${person.adult} should work, unless you are using a very old version of JSP, in which case you may need to change your method name to getAdult() or even getIsAdult().

Essentially this same question was asked (and answered) here: getting boolean properties from objects in jsp el

Upvotes: 1

Abdul
Abdul

Reputation: 587

try this

 class Person {
  private int age;
  private boolean adult;
  public int getAge() {
    return age;
  }
  public void isAdult() {
    adult = (age > 19);
  }
}

${person.adult}

Upvotes: 0

Kilian Foth
Kilian Foth

Reputation: 14396

The JavaBean specification defines isXXX for boolean getters and getXXX for other getter, so it should be exactly the same syntax: ${person.adult}.

Upvotes: 0

Related Questions