bonjour
je voudrais savoir si monannotation struts 2 est bonne
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
 
 
	  @Actions({
		  @Action(value = "/jsontable" , results = {
			      @Result(name = "success", type = "json")
			    })
})
	  public String execute()
	  {
 
	    int to = (rows * page);
	    int from = to - rows;
 
 
	    //Count Rows (select count(*) from custumer)
	    records = CustumerDAO.count();
 
	    //Your logic to search and select the required data.
	    gridModel = CustumerDAO.find(from, to);
 
	    //calculate the total pages for the query
	    total =(int) Math.ceil((double)records / (double)rows);
 
	    return SUCCESS;
	  }
 
	  public String getJSON()
	  {
	    return execute();
	  }
 
	  //Getters and Setters for Attributes
 
}
a quoi correspond
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
 @Actions({
		  @Action(value = "/jsontable" , results = {
			      @Result(name = "success", type = "json")
			    })
})
atttribut value n'est pas reconnu je croi qu 'il y a une erreur de syntaxe dans mon annotation
pouvez m'aider.