May 2008
Intermediate to advanced
424 pages
15h 59m
English
This chapter covers
With the overviews and introductions behind us, it’s time to study the core components of Struts 2. First up, actions. As we’ve learned, actions do the core work for each request. They contain the business logic, hold the data, and then select the result that should render the result page. This is an action-oriented framework; actions are at its heart. In the end, you’ll spend much of your time as a Struts 2 developer working with actions.
This chapter will give you everything you need to start building your application’s actions. Using the XML-based mechanism ...