Results 1 to 3 of 3

Thread: Form controller support for multiple form views.

  1. #1
    Join Date
    Aug 2004
    Location
    Cincinnati Ohio
    Posts
    7

    Default Form controller support for multiple form views.

    Gentlemen;

    Perhaps I am missing something here, but I have been conditioned by my struts experiance to expect controllers to handle multiple form mappings. I understand the multiaction controller, but there does not appear to be any way to map multiple formViews to a single form controller.

    The result is that in the scenario of my project in which crud operations occur on different forms, I have had to code (class and testcase) and map three seperate controllers, all of which have similiar code. This is against. The absence of this feature is complecating my task.

    What am I missing?

    Thanks;

    John Olmstead
    John Olmstead
    jolmstead2k@yahoo.com

  2. #2
    Join Date
    Aug 2004
    Location
    Amsterdam, Netherlands
    Posts
    450

    Default

    You're saying your controller have similar code. How similar? If it's just one class that you want to map to multiple form views, you can just configure the class multiple times, each one of them with different form views.

    If the code is not completely the same, I'd refactor the common functionality into a base class (in its turn extending the form controller) and subclass the newly created superclass. You could even make the superformcontroller configurable.

    Remember, Spring does not aim to provide everything you need. Using Dependency Injection you can easily extend the functionality Spring MVC offers.

  3. #3
    Join Date
    Aug 2004
    Location
    Cincinnati Ohio
    Posts
    7

    Default Multiple actions mapped to one controller.

    Thanks, that makes perfect sense.
    John Olmstead
    jolmstead2k@yahoo.com

Similar Threads

  1. Replies: 4
    Last Post: Sep 1st, 2010, 01:38 AM
  2. Replies: 3
    Last Post: Jun 8th, 2010, 03:27 AM
  3. Replies: 6
    Last Post: Jul 20th, 2007, 05:56 AM
  4. Replies: 0
    Last Post: Jun 10th, 2005, 08:22 AM
  5. Controller to Form Navigation?
    By cnelson in forum Web
    Replies: 1
    Last Post: Aug 20th, 2004, 06:18 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •