• 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
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

How to remove Bean?

 
Ranch Hand
Posts: 63
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi ,
How do you remove Bean or map from requestScope ?

If it is a simple variable , We can remove it using

<c:remove var="choice" scope="request"/>

If it is a bean myBean in request scope , I can not use

<c:remove var="${mybean}" scope="request"/>
because var can not take EL expressions .

Any ideas on how I can remove attribute/bean from a given scope ?

Thanks
Akhil
reply
    Bookmark Topic Watch Topic
  • New Topic