It's not a secret anymore!
The moose likes Beginning Java and the fly likes Singleton Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of Mongo DB Applied Patterns this week in the MongoDB forum
or a resume review from Five Year Itch in the Jobs Discussion forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Singleton " Watch "Singleton " New topic
Author

Singleton

kri shan
Ranch Hand

Joined: Apr 08, 2004
Posts: 1300
How can i add main() within the Singleton class. Then how can i call the normal method in the singleton class in jsp page??
David Ulicny
Ranch Hand

Joined: Aug 04, 2004
Posts: 724
What do you mean by Singleton class? Do you mean Singleton Pattern? If yes, it is normal Java class and main method is static, where is the problem?
Just obtain the reference from singleton itself and you are able to call nonstatic methods.


SCJP<br />SCWCD <br />ICSD(286)<br />MCP 70-216
 
I agree. Here's the link: http://zeroturnaround.com/jrebel
 
subject: Singleton
 
Similar Threads
How is Servlet a singleton?
Singleton Factory Object
Java reflection to get method name
Singleton class + Lazy loading
Singleton as base class