I am not getting what is 'Furniture' here ..So plz give me detail information on it...
ServletContext sc = event.getServletContext();
String whatType = sc.getInitParameter("typeSelected");
Furniture f = new Furniture(whatType);
sc.setAttribute("furniture", f);
Not a complete description.
Furniture f = new Furniture(whatType); // Mean ?
Furniture f = (Furniture)getServletContext().getAttribute("furniture"); //Not clear
great article!Tarn.Keks May 31, 2011 at 12:02 PM
Thanks for this great article. I just started to deal with Servlets and GWT.
defiined servlet context listener in web.xmlSunil Pachori June 7, 2011 at 12:14 PM
how to defined the <listener-class>path of servlet </listener-class> in web.xml
Not getting what to do ...chetan November 9, 2011 at 7:28 PM
I am not getting what is 'Furniture' here ..So plz give me detail information on it... ServletContext sc = event.getServletContext(); String whatType = sc.getInitParameter("typeSelected"); Furniture f = new Furniture(whatType); sc.setAttribute("furniture", f);
IssueJohn February 28, 2013 at 2:20 PM
Not a complete description. Furniture f = new Furniture(whatType); // Mean ? Furniture f = (Furniture)getServletContext().getAttribute("furniture"); //Not clear
ServletContextListenerNagi February 12, 2012 at 9:58 AM
Thanks alot, simple and good explination
furniiture munna June 8, 2012 at 11:56 AM
no funiture class
Post your Comment