Bonjour a tous,
j'ai mon code pour la page Technologiecontroller :
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
package com.consoft.jsf;
 
import com.consoft.entity.Prestation;
import com.consoft.entity.RefTechnologie;
import com.consoft.entity.Reference;
import com.consoft.entity.Technologie;
import com.consoft.jsf.Controller;
import com.consoft.stateless.technologie.TechnologieBeanRemote;
 
import javax.faces.model.SelectItem;
 
 
import javax.faces.application.FacesMessage;
import javax.faces.context.FacesContext;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
 
import java.awt.event.ActionEvent;
import java.io.IOException;
import java.util.List;
 
 
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
 
import javax.*;
 
import sun.awt.windows.ThemeReader;
 
public class TechnologieController extends Controller{
 
// Attributs
	private Technologie technologie = new Technologie();
	private String keyword;
	private List<Technologie> technologies;
	private Map<Integer, Boolean> selectedIds= new HashMap<Integer, Boolean>();
	private List<SelectItem> result = new ArrayList<SelectItem>();
 
//	private final String cname = this.getClass().getName();
 
 
 
 
	TechnologieBeanRemote TB()throws NamingException {
	//Context jndiContext = getInitialContext();
	Context jndiContext;
	jndiContext= new InitialContext();
	Object ref = jndiContext.lookup("sam/TechnologieBean/remote");	//ne pas oublier d'ajouter le nom du projet EAR au chemin
	TechnologieBeanRemote technologieBean = (TechnologieBeanRemote)ref;	// bonjourSessionBean : c'est la référence généré lors du déployement
    return technologieBean;
	}
 
 
	// ======================================
	// = Methodes publiques =
	// ======================================
 
	public String doCreateTechnologie() {
		// final String mname = "doCreateTechnologie";
		// logger.entering(cname, mname);
 
		String navigateTo = null;
 
		try {
			//If the Prestation Exist (have the same name)
			List<Technologie> Exist=null;
			Exist = TB().searchTechnologies(technologie.getDescription());
			if (!(Exist.size()>0&&Exist!=null))
			{
 
			// Creates the Technologie
			technologie.setNombreref(0);
			technologie = TB().createTechnologie(technologie);	           
			//technologies = TB().findTechnologies();
		    //navigateTo = "technologie.created";
		    navigateTo = doFindTechnologies();
			FacesContext.getCurrentInstance().addMessage("addTechno", new FacesMessage(
		    FacesMessage.SEVERITY_INFO, "Technologie ajouté avec succés!", null));
			}
			else
			{
			FacesContext.getCurrentInstance().addMessage("addTechno", new FacesMessage(
			    FacesMessage.SEVERITY_ERROR, "La technologie existe déja!", null));
			}
 
		} catch (Exception e) {
 
			  FacesContext.getCurrentInstance().addMessage("addTechno", new FacesMessage(
                      FacesMessage.SEVERITY_ERROR, "Erreur d'ajout de technologie.", null));
 
                  // Always log stacktraces.
                  e.printStackTrace();
	//System.out.println(e);// addMessage(cname, mname, e);
		}
 
		// logger.exiting(cname, mname, navigateTo);
 
		return navigateTo;
	}
 
 
	public List<SelectItem> doFillTechnologies()
	{
		  try {
 
	            technologies = TB().findTechnologies();
	            for (Technologie tech : technologies) {
 
	    			SelectItem item = new SelectItem(tech.getNotechnologie(),tech.getDescription());
	    			result.add(item);
	    		}
		  } catch (Exception e) {
	          //  addMessage(cname, mname, e);
	        }
	            return result;
	}
 
	public Technologie doFindTechnologie(int technologieId) {
 
		Technologie technologie = null;
		try {
 
			technologie = TB().findTechnologie(technologieId);
 
		} catch (Exception e) {
			//addMessage(cname, mname, e);
			System.out.println("Error While looking for Technology"+e);
			e.printStackTrace();
		}
 
		return technologie;
	}
	 public String doFindTechnologies() {
	      //  final String mname = "doFindProducts";
	      //  logger.entering(cname, mname);
 
	        String navigateTo = null;
	        //set technologie instance to null
	        Clear();
	         try {
 
			//
 
 
			 technologies = TB().findTechnologies();
			 navigateTo = "technologies.displayed";
			 return navigateTo;
		} catch (Exception e) {
			logger.warning(e.getMessage());
			e.printStackTrace();
			// addMessage(cname, mname, e);
		}
	       /* try {
 
	            technologies = TB().findTechnologies();
 
	            navigateTo = "technologies.displayed";
	        } catch (Exception e) {
	          //  addMessage(cname, mname, e);
	        }*/
 
	     //   logger.exiting(cname, mname, navigateTo);
	        return navigateTo;
	    }
	 public String doShowTechnologie() {
 
	        String navigateTo = null;
	        try {      	
	        	technologies = TB().findTechnologies();
	            technologie = TB().findTechnologie(getParamId("technologieId"));	
	            navigateTo = "technology.showed";
	        } catch (Exception e) {
	        //    addMessage(cname, mname, e);
	        }
	        System.out.println(technologie.getDescription());
	        System.out.println(getParamId("technologieId"));
	        return navigateTo;
	    }
 
 
	public String doUpdateTechnologie() {
		// final String mname = "doUpdateTechnologie";
		// logger.entering(cname, mname);
 
		String navigateTo = null;
 
		try {
			List<Technologie> Exist=null;
			Exist = TB().searchTechnologies(technologie.getDescription());
			boolean occurence=false;
			for(Technologie c : Exist)
			{
				boolean equals=c.getDescription().equalsIgnoreCase(technologie.getDescription());
 
			 	if(c.getNotechnologie()!=technologie.getNotechnologie()&&equals)
 
					occurence=true;
			}
 
			if (occurence==false)
			{
			// Updates the technologie
			technologie = TB().updateTechnologie(technologie);
			technologies = TB().findTechnologies();
			navigateTo = "technologies.updated";
			FacesContext.getCurrentInstance().addMessage("addTechno", new FacesMessage(
				    FacesMessage.SEVERITY_INFO, "Technologie modifié avec succés!", null));
			this.Clear();
 
			}else
			{
 
				FacesContext.getCurrentInstance().addMessage("addTechno", new FacesMessage(
	                    FacesMessage.SEVERITY_ERROR, "Le technologie existe déja!", null));
			}
 
		} catch (Exception e) {
			FacesContext.getCurrentInstance().addMessage("addTechno", new FacesMessage(
                    FacesMessage.SEVERITY_ERROR, "Erreur de modification de technologie.", null));
			// addMessage(cname, mname, e);
		}
		// logger.exiting(cname, mname, navigateTo);
		return navigateTo;
	}
 
	  public String doSearch() {
	      //  final String mname = "doSearch";
	     //   logger.entering(cname, mname);
 
	        String navigateTo = null;
 
	        try {
	            technologies = TB().searchTechnologies(keyword);
	            navigateTo = "technologies.found";
	        } catch (Exception e) {
	         //   addMessage(cname, mname, e);
	        }
 
	       // logger.exiting(cname, mname, navigateTo);
	        return navigateTo;
	    }
 
 
 
 
	  public String  doDeleteSelectedTechnologies()
	  {
 
			List<RefTechnologie> listr=null;
			ReferenceController rc =new ReferenceController();
			boolean msg=false;
			StringBuffer erreur = new StringBuffer();
		    String navigateTo = null;
		  try {
	       for (Technologie tech : technologies)
	       {
 
	    	 if (selectedIds.containsKey(tech.getNotechnologie()))
	    	 {
	    	   if(selectedIds.get(tech.getNotechnologie()).booleanValue() ==true )
	    	   {
	    		 //Verify whether the client is attached to a reference 
					listr=	rc.TB().SearchReferenceTechnologie(tech.getNotechnologie());
 
 
					if(listr.size()>0)
					{
						//remove from selected Ids
						selectedIds.remove(tech.getNotechnologie());
 
						erreur.append(tech.getDescription()+" | ");
						msg=true;
					}
					else{
						 // Delete  the technologie
		                  TB().deleteTechnologie(tech);
		                  navigateTo = "technologie.deleted";
					   }
 
 
 
	    	   }
	          }
	       }
 
	       //ERREUR
	       if(msg)
	   		FacesContext.getCurrentInstance().addMessage("technologieForm",
	   					new FacesMessage(FacesMessage.SEVERITY_ERROR,
	   					"Impossible de supprimer une technologie appartenant à une référence !", null));
 
 
	       technologies = TB().findTechnologies();
		  }
		  catch (Exception e) {
			// TODO: handle exception
		}
 
 
	       return navigateTo; // Navigation case.
	  }
 
 
	  public void Clear(){  
			getTechnologie().setNotechnologie(0);
			getTechnologie().setDescription(null);
			this.keyword=null;
 
 
		}
 
	// ======================================
	// = Methodes Protégées =
	// ======================================
 
	// ======================================
	// = Accesseurs =
	// ======================================
 
	public Technologie getTechnologie() {
		return technologie;
	}
 
	public void setTechnologie(Technologie technologie) {
		this.technologie = technologie;
	}
 
	public String getKeyword() {
		return keyword;
	}
 
	public void setKeyword(String keyword) {
		this.keyword = keyword;
	}
 
	  public List<Technologie> getTechnologies() {
	        return technologies;
	    }
 
	  public void setTechnologies( List<Technologie> technologies) {
			this.technologies = technologies;
		}
 
	  public Map<Integer, Boolean> getSelectedIds() {
	        return selectedIds;
	    }
 
	  public List<SelectItem> getresult() {
		  return this.result;
	  }
	  public void setresult( List<SelectItem> res) {
			this.result = res;
		}
 
 
	// ======================================
	// = Methodes Privées =
	// ======================================
 
	// ======================================
	// = Methodes hash, equals, toString =
	// ======================================
	public static Context getInitialContext() 
    throws javax.naming.NamingException 
        {
    return new javax.naming.InitialContext();
        }
}
j'ai eu cette erreur #javax.servlet.ServletException: {technologieMB.doFindTechnologies}: org.apache.jasper.el.JspPropertyNotFoundException: /admin/../common/navigation.jspf(14,14) '#{technologieMB.doFindTechnologies}' Target Unreachable, identifier 'technologieMB' resolved to null

est ce que le code de ma classe controller est juste ?
et pk il me return null ?