For more information, here my bean class java:
package org.nuxeo.masociete.cas.ventilfact.seam;
import java.io.Serializable;
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Scope;
import org.jboss.seam.ScopeType;
@Name("outilVentilFact")
@Scope(ScopeType.APPLICATION)
public class OutilVentilFact implements Serializable{
private static final long serialVersionUID = 1L;
public String afficherTest(){
return "TestOK!";
}
}
And my Jsf page where i call it:
<div xmlns:f="http://java.sun.com/jsf/core"
xmlns:c="http://java.sun.com/jstl/core"
xmlns:h="http://java.sun.com/jsf/html">
#{outilVentilFact.afficherTest()}
test 2
</div>
In my web page i can see "test 2" and not "TestOK!".
Please help me about that it's very important for me to
represent Nuxeo into my society.
Regards,
moise
---
Mailing list: [email protected]
Forum: http://forum.nuxeo.org/f/1/