JSP中取bean属性访问不到的问题解决方法
jsp中使用EL表达式取bean中的属性Ext_FMIPrintName,页面报错取不到,但是bean中明明存在该属性。
<table class="altrowstable" id="alternatecolor">
<tr><th>用户编号</th><th>用户名称</th><th>部门</th></tr>
<c:forEach items="${emplist}" var="lists">
<tr>
<td>${lists.HR_EmpCode}</td><td>${lists.HR_EmpName}</td><td>${lists["Ext_FMIPrintName"]}</td>
</tr>
</c:forEach>
</table>
通过修改bean中的字段首字母小写,问题解决。