以下是包含bean对象的Map对象。
hasMap = customerData.getCustomerDetailsMap();
我存储了客户详细信息Bean'在Map中,现在我将此映射设置为在servlet中请求参数并传递给jsp
request.setAttribute("customerDataMap", hasMap);
通过以下代码检索jsp中的hashmap。
${customerDataMap[param.value]}
使用param.value作为键我正在获取客户Details对象(我正在打印object.i我正在获取bean对象。)。现在我想在jsp中从bean中检索值。如何实现这一点仅限jsp。
我不想直接将bean对象发送到jsp。
答案 0 :(得分:0)
你试过${customerDataMap[param.value].objectProperty}
吗?
例如${customerDataMap[param.value].name}