aspose file tools
The moose likes Servlets and the fly likes how to access the servlet's context in a different file? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "how to access the servlet Watch "how to access the servlet New topic
Author

how to access the servlet's context in a different file?

Peter Primrose
Ranch Hand

Joined: Sep 10, 2004
Posts: 755
Hi guys,

In my startup manger class I'm loading some important information in which I would like to use later.

Say I have just loaded some information from a file "fileInformation"
and I would like to access this information in the application.

I did this:


How can I refer to the fileInfo when I'm in a different class?
say:



obviously, i don't have access to the servletContext?

anyone?
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56200
    
  13

You'd handle this just as you would in any other Java application. When one object has info that another object needs, the data needs to be passed to the other object.
[ December 08, 2006: Message edited by: Bear Bibeault ]

[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
Peter Primrose
Ranch Hand

Joined: Sep 10, 2004
Posts: 755
ok, so one way to do that is to pass it to a static class (maybe build a HashMap and store it) but I wonder if there's any way to access the servletContext?

thanks
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56200
    
  13

Who said anything about a static class?
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35247
    
    7
You could pass a reference to the context in the PokerFacade constructor, or add a setter for it.


Android appsImageJ pluginsJava web charts
Rahul Bhattacharjee
Ranch Hand

Joined: Nov 29, 2005
Posts: 2300
Originally posted by Peter Primrose:

obviously, i don't have access to the servletContext?

anyone?


Then you cannot access the object bound to servletContext


Rahul Bhattacharjee
LinkedIn - Blog
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: how to access the servlet's context in a different file?
 
Similar Threads
The ULTIMATE! From the creator of FileMonitor comes DirectoryMonitor :)
Sorting Field Order?
FileUpload with Orion Package
I wrote my own FileMonitor. Check it out.
Gracefully handling IOException: too many open files