• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

New to struts 2

 
Ranch Hand
Posts: 246
Firefox Browser Oracle
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is struts 2 has only filter? Is there any servlet's ? if so then what kind of forward they are using (i mean response.sendRedirect("sds"); or RequestDispatcher("sss").forword/include(req,res);)
 
Greenhorn
Posts: 29
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Struts 2 has much richer functionality than Struts 1.x. Its a complete new framework but still uses MVC architecture. You can get difference between both of releases from following links.
Rose India.
Apache Site .
 
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

mallikarjun dontamsetti wrote:Is struts 2 has only filter? Is there any servlet's ?



Struts is implemented as a filter. It is a framework built on top of Servlets and other related technologies (note: that page is from the Struts 1 documentation. The information still applies in Struts 2) that makes creating web applications easier.

mallikarjun dontamsetti wrote:
if so then what kind of forward they are using (i mean response.sendRedirect("sds"); or RequestDispatcher("sss").forword/include(req,res);)



You can configure Struts to use either a redirect or a forward.
By the way, I would recommend you avoid Rose India. They have a pretty poor reputation.
 
reply
    Bookmark Topic Watch Topic
  • New Topic