WELCOME Abdennour : Software engineer

Nov 20, 2011

Tuto JSf HelloWorld Ajaxifier

1.Prérequis :
-netbeans 6.7, 6.9 ou 7.0.1.
-glassFish 3 ou 3.1 .
- La Version de NetBeans est : 7.0.* intègre PrimeFaces .
2.Manupilation:


2.a.Création De JSF Managed Bean :
Créer cette Classe :
Welcom.java
@ManagedBean(name = "mohamed")
@RequestScoped
public class Welcome {

    private String Te7iia;
    private String nom;
   private int compter ;
   private Date maintenant;

    public Date getMaintenant() {
        return (new Date());
    }

    public void setMaintenant(Date maintenant) {
        this.maintenant = maintenant;
    }

    public int getCompter() {
        return compter;
    }

    public void setCompter(int compter) {
        this.compter = compter;
    }
 
    public String getNom() {
        return nom;
    }

    public void setNom(String nom) {
        this.nom = nom;
    }
    public String getTe7iia() {
        return Te7iia;
    }

    public void setTe7iia(String Te7iia) {
        this.Te7iia = Te7iia;
    }

    /** Creates a new instance of Welcome */
    public Welcome() {
    }
  
    public String SayHello()
    {
        return "السلاام عليكم";    //Esselemou 3leikom
    }
    // Pour Compter la taille de la String onKey
    public void tailleListner(AjaxBehaviorEvent event){
        compter=nom.length();
              
    }
    //Pour Envoyer l'heure par ajax
 
}

2.b.Création de Faclets Template Client:
Il faut créer avant ça le Faclets Template (XX.xhtml) puis Faclets Template Client hérite de XX.xhtml



 

No comments:

Post a Comment