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?

Answers were Sorted based on User's Feedback



how to implement singletun design patteren in struts?..

Answer / sk neelofar

public class Sample
{
pubic static Sample s=new Sample();
private sample(){
}//constructor
public static smple getInstance()//static factory method
{
return s;
}//method
}//class

......
Sample s1= Sample.getInstance();
Sample s2= Sample.getInstance();


1.A static method can b called outside the class using clas
name.
2.In this implementation, we used private constructor n a
static factory method to make a class as a singleton class.
3.if we call the getInstance(); of the class for any no. of
times, same object of the class will b returned to the
programmer.
4. the programmer can't create an object pf this class
outside the class, coz it has a private constructor.

Is This Answer Correct ?    23 Yes 2 No

how to implement singletun design patteren in struts?..

Answer / haneef

Hi guys..he is asking how to implement singleton in struts.

see if your using ActionServlet means, then we will
automatically uses singleton.

because, only one ActionServlet provides services to all the
customers.

Is This Answer Correct ?    19 Yes 0 No

how to implement singletun design patteren in struts?..

Answer / guest

Just we develop a class, in that we write a private
constructor. in that we define one method that returns the
object.

Is This Answer Correct ?    4 Yes 2 No

how to implement singletun design patteren in struts?..

Answer / 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

how to implement singletun design patteren in struts?..

Answer / sudheer

Struts are followed purely MVC1 Design pattern here
business logic is different from data presentation and
controller so struts are implemented singletun design pattern.

Is This Answer Correct ?    5 Yes 35 No

Post New Answer

More Struts Interview Questions

what is the purpose of load_on_startup entry in struts- config.xml?

5 Answers  


How to convert struts to spring mvc?

0 Answers  


shall we use any name for deployment descriptor of struts instead of struts-config.xml

3 Answers   Polaris,


Why we use struts in java?

0 Answers  


How we can controlled duplicate form submission in struts?

0 Answers  


What are the core classes of the struts framework?

0 Answers  


What is the purpose of @key?

0 Answers  


how to write the configuration file of struts application if any one had simple struts application please it to me

1 Answers  


What is action class?

0 Answers  


collection framework hirarchy?

5 Answers  


How to override the default error message that can come during file uploading process?

0 Answers  


What are the differences between Struts1 and Struts2 or how Struts2 is better than Struts1?

0 Answers  


Categories