GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  J2EE  >  Core Java

 Print  |  
Question:   When you use a struts framework, where would you place your business logic



July 07, 2008 10:45:19 #10
 Debananadajena   Member Since: July 2008    Total Comments: 2 

RE: When you use a struts framework, where would you place your business logic
 
When we are using struts the action class should not contain the business logic if we are adding in action class then it is not right because action class are instantiated by controller.So we can use other java classes like helper classes where we will keep our business logic and then we can instantiate them in action class.
     

 

Back To Question