• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

difference between initParameter and attribute

 
Ranch Hand
Posts: 33
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Does anyone know the difference between the following two methods?
ServletContext.getInitParameter()
ServletContext.getAttribute()
I understand that the first one gets the initial parameters from the deployment descriptor, whereas the second gets the ones set programmatically using the setter method setAttribute().
Is that it or is there something more that I missed?
Thanks,
Francois
 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

You are right. initParameter is from servlet configuration (deployment descriptor ) & attribute is the object which is shared in the application scope.

Bhagvan K
SCJP2
 
reply
    Bookmark Topic Watch Topic
  • New Topic