Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within Struts
Search Coderanch
Advance search
Google search
Register / Login
Win a copy of
Helidon Revealed: A Practical Guide to Oracle’s Microservices Framework
this week in the
Java in General
forum!
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
Liutauras Vilda
Ron McLeod
Sheriffs:
Jeanne Boyarsky
Devaka Cooray
Paul Clapham
Saloon Keepers:
Scott Selikoff
Tim Holloway
Piet Souris
Mikalai Zaikin
Frits Walraven
Bartenders:
Stephan van Hulst
Carey Brown
Forum:
Struts
How to get ServletConfig and ServletContexts in Action class of struts
sreenivas jeenor
Ranch Hand
Posts: 125
posted 17 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
HI,
How to get ServletConfig and ServletContext in Action class of
struts
.
so that i can use context object to store user sessions..
Help me out..
Thank You
J Sreenivas
Merrill Higginson
Ranch Hand
Posts: 4864
posted 17 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
The class org.apache.struts.action.Action that your action class extends has a getServlet() method that returns the instance of ActionServlet that called your action. Once you have the
servlet
, you can get the servlet context. Example:
ServletContext ctx = getServlet().getServletContext();
Merrill
Consultant,
Sima Solutions
sreenivas jeenor
Ranch Hand
Posts: 125
posted 17 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Thanks merrill
Politics n. Poly "many" + ticks "blood sucking insects". Tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
Struts 2 session writing efficiency / timing
how to get the servletconfig object in servlets?
How to get ServletConfig or ServeltContext object in the Simple Tag handler?
instances of an action class
Hoe to read initialization parameters in the struts
More...