Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 JSTL 访问某些对象方法?
假设我的对象是 Person 类的一个实例,并且我有一个getName()方法,我想使用 JSTL 在 JSP 页面中调用该方法。
getName()
另一种显示名称的方法是<c:out value="${person.name}"/>
<c:out value="${person.name}"/>
您将使用以下语法:
${person.name}