[RESOLVIDO]Property ... not found on type

Pessoal, eu já vi em vários fóruns esse problema, mas no meu caso eu creio que estou fazendo tudo o que deveria para funcionar.
Eu quero listar duas listas diferentes (list e list2).
Um trecho do meu bean eh:

[code]@ManagedBean(name = “notificationBean”)
@RequestScoped
public class NotificationBean {
private Notification selected = new Notification();
private List list = null;
private List list2 = null;
public List getList() {
if (this.list == null) {
ContextoBean contextoBean = ContextoUtil.getContextoBean();

		NotificationRN notificationRN = new NotificationRN();
		this.list = notificationRN.list(contextoBean.getLoggedUser());
	}

	return this.list;
}
public List<Notification> getList2() {
	if (this.list2 == null) {
		ContextoBean contextoBean = ContextoUtil.getContextoBean();

		NotificationRN notificationRN = new NotificationRN();
		this.list2 = notificationRN.list2(contextoBean.getLoggedUser().getIduser());
	}

	return this.list2;
}[/code]

E meu datatable em um arquivo está assim:

[code]<p:dataTable var=“notification” value="#{notificationBean.list2}">

					<c:facet name="header">Listing notification</c:facet>
					<p:column>
						<c:facet name="header">
							<h:outputText value="Notification" />
						</c:facet>
						<h:outputText value="#{notification.codNotification}" />
					</p:column>
				</p:dataTable>[/code]

E em outro assim:

[code]<p:dataTable id=“dataTable” var=“notification"
value=”#{notificationBean.list}">

						<c:facet name="header">Listing notification</c:facet>
						<p:column>
							<c:facet name="header">
								<h:outputText value="Notification" />
							</c:facet>
							<h:outputText value="#{notification.codNotification}" />
						</p:column>[/code]

São praticamente idênticos.
O problema: Só funciona para o list!!
Para o list2 aparece o seguinte erro:

[quote]SEVERE: Servlet.service() for servlet Faces Servlet threw exception
javax.el.PropertyNotFoundException: /restrict/restrictednotifyfinish.xhtml @122,72 value="#{notificationBean.list2}": Property ‘list2’ not found on type hpdd.web.NotificationBean
at com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:111)…[/quote]
Alguém sabe o porquê desse erro?
Agradeço qualquer ajuda desde já. =)

Esse erro acontece pq a propriedade list2 não existe e/ou não foi criado um getter para ela no controller,

Mas isso não é verdade já que vc tem o get dela no seu controller,

Derepente vc esta com um war desatualizado no seu servidor,

Limpe o projeto e o servidor no eclipse pra ver

Obrigada pela ajuda Rafael.
Eu limpei o projeto e o servidor, mas aí começou a dar um erro que eu não sabia como resolver. Erro no filter, algo assim.
Então acabei pegando uma versão anterior do projeto e copiei meus arquivos modificados para ele.
Quando fiz isso, o meu problema foi resolvido…muito estranho né… =/

Valew mais uma vez pela a ajuda. =)

De nada Lin,

Vc irá limpar o projeto tantas vezes na sua vida que isso se tornará default…rs

Abrcs