Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

how to implement singletun design patteren in struts?

Answer Posted / shaik baji

Singletun design patteren means we can't create more than
one object for that class which follws Singletun design
pattern.

We can implement it by using one "private" constructor and
one Factory mathod as like follows:

class Sample
{
public static Sample s = new Sample();

private Sample()//constructor
{

}
public static Sample getInstance()//static factory
method
{
return s;
}
}

public class SingleTun
{
public static void main(String arg[])
{
Sample s1= Sample.getInstance();
Sample s2= Sample.getInstance();

}

}

Is This Answer Correct ?    5 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is ACID test for fresh engineers??what is the pattern??

2754


What are the loop holes of struts?

1003


What is the configuration files used in struts?

921


Is struts action class singleton?

956


What is the use of forwardaction?

980


How to build struts application in eclipse?

949


What is action class? What are the types of action class?

931


Can you explain the directory structure for a struts folder in brief ?

927


In which method of action class the business logic is executed?

948


In struts.xml, what does the attribute "method" stands for in the "action" tag?

910


What are the benefits of Struts framework?

967


What is the role of a handler in mvc based applications?

1185


What is struts2 framework?

897


What are the aware interfaces in struts2?

970


Why are frameworks used?

953