JSF 2.2 @RequestScope

时间:2013-10-08 08:25:16

标签: jsf-2.2

我对@RequestScope bean有很大疑问。 我有一个由数组列表填充的数据表,如下所示:

if(eventiCentroUtente == null){

    eventiCentroUtente = eventoMgmtService.getEventiByCentroCinofiloId(getCurrentBeanUtente().getUtenteCorrente().getCentroCinofilo().getIdCentro());

}

正如您所见,数组列表的数量取决于最终用户参数(getCurrentBeanUtente()。getUtenteCorrente()。getCentroCinofilo()。getIdCentro())! 所以....如果我登录两个不同的用户,我将看到相同的数组列表,因为只有第一次列表为空!第二个数组列表不为null并由第一个用户请求参数填充! 为什么? 我会为新请求添加一个新bean,依此类推我会有一个新的数组列表!

我不明白的是什么?

提前感谢您的建议! 祝你有愉快的一天!

0 个答案:

没有答案