Struts

  • 12 décembre 2007 Get a better handle on Struts actions, with Spring

    importing Struts applications into the Spring framework. Follow along as George shows you how to revamp Struts actions so they can be managed just like Spring beans. The result is a boosted web framework that easily reaps the benefits of Spring AOP.

  • 11 juillet 2007 TagUnit : Bringing testing and test-driven development to JSP

    Allows unit testing of JSP custom tags within their special environment.

  • 31 mai 2007 My History of Struts 2 - O'Reilly ONJava Blog
    blog java struts
  • 27 avril 2007 StrutsTestCase for JUnit

    StrutsTestCase for JUnit is an extension of the standard JUnit TestCase class that provides facilities for testing code based on the Struts framework. StrutsTestCase provides both a Mock Object approach and a Cactus approach to actually run the Struts ActionServlet, allowing you to test your Struts code with or without a running servlet engine. Because StrutsTestCase uses the ActionServlet controller to test your code, you can test not only the implementation of your Action objects, but also your mappings, form beans, and forwards declarations. And because StrutsTestCase already provides validation methods, it’s quick and easy to write unit test cases.

  • 14 novembre 2006 AJAX et Struts par l'exemple - Julien Carnelos Blog

    On trouve aujourd’hui beaucoup de références sur le net sur AJAX ( XmlHTTPRequest en réalité ) mais peu d’éléments sur l’intégration de AJAX sur le framework Struts. Concernant les ressources francaises sur le sujet, c’est quasi inexistant en recherche sur Google. Je me suis donc décidé à écrire ce petit article technique. Attention, cet article n’explique pas réellement le fonctionnement de la technologie AJAX mais plutôt de son intégration avec le framework Struts.

  • 14 novembre 2006 java.net: Sprinkle Some AJAX Magic in Your Struts Web Application

    AJAX is the latest revolution in web development circles, allowing rich dynamic interfaces deployed within a normal web browser. Struts has been one of the de facto standards for Java-Web development for a number of years, with a large number of applications already deployed. This article will show you how to combine the richness of an AJAX user interface with your existing Struts applications.

    This article shows a simple and elegant way to do this by including a couple of lines of JavaScript on your JavaServer Pages (JSPs). While we show how to reuse existing Struts actions, the techniques are equally applicable to the Java-Web framework of your choice. The method proposed will also allow a move to the next version of Struts (Shale) or JavaServer Faces (JSF) in the future.

  • 14 novembre 2006 Struts best practices - Java World

    The article discusses the following main points:

    * Screens with dynamic fields
    
    * Safeguarding JSP pages
    
    * Error categorization
    
    * Validation of service requester
    
    * Application security
    
    * Prepopulation
    
    * Stack maintenance (for bread crumbs)
    
    * Context-related problems
    
    * Form-bean scope
    
    * Data transfer object implementation
    
    * Exceptions
    
    * Action chaining