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
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
Who said anything about a static class?
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35247
posted Dec 09, 2006 00:11:00
0
You could pass a reference to the context in the PokerFacade constructor, or add a setter for it.
Android apps – ImageJ plugins – Java 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
subject: how to access the servlet's context in a different file?