Integrating CF with SpringFrameWork

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Integrating CF with SpringFrameWork

    Greetings. I'm here to learn to run before I learn to walk. lol.

    Here's the problem. A colleague and myself are trying to integrate CF and
    SpringFrameWork. We would like to the processing in the middle tier, inside
    the Java application, and then pass the results back to the CF page through the
    front controller.

    I am aware of getting at the page context using getPageContext(), and I
    thought we might stuff the model inside a HashMap, then add it to the session
    scope using setAttribute(). Then in the CF page get the results back out using
    getPageContext().getAttribute(). Next process the results inside the CF page
    as java objects.

    Is the a sound approach or can someone suggest a better direction for me to go
    in?

    cskidmore Guest

  2. Similar Questions and Discussions

    1. Integrating Flash with a LMS
      Is it possible to develop original content with Actionscript using bespoke question formats and transfer this to a LMS. I have just developed lots...
    2. Integrating in Windows.net
      I want to call Dreamweaver html editor in my windows application, any help or suggestions :)
    3. Integrating MX and 8.5?
      Hi, At home I have MX,at uni 8.5. WIll I be able to work with the same project on both? Sorry if this has been asked before, I had a look but...
    4. [PHP] Integrating an Applet with PHP
      There may be other methods, but one that seems to be available from your form will require some JavaScript code. Clicking the button located below...
    5. Integrating an Applet with PHP
      I have located an HTML editor written in Java that works with my clients various computers (e.g. Linux, PC and Macs). What I need to do is learn...
  3. #2

    Default Re: Integrating CF with SpringFrameWork

    On 2005-05-13 20:47:01 -0500, "cskidmore" <webforumsuser@macromedia.com> said:
    > Greetings. I'm here to learn to run before I learn to walk. lol.
    >
    > Here's the problem. A colleague and myself are trying to integrate CF
    > and SpringFrameWork. We would like to the processing in the middle
    > tier, inside the Java application, and then pass the results back to
    > the CF page through the front controller.
    >
    > I am aware of getting at the page context using getPageContext(), and
    > I thought we might stuff the model inside a HashMap, then add it to the
    > session scope using setAttribute(). Then in the CF page get the
    > results back out using getPageContext().getAttribute(). Next process
    > the results inside the CF page as java objects.
    >
    > Is the a sound approach or can someone suggest a better direction for
    > me to go in?
    There is a limited implementation of Spring concepts in CF that's
    available; it's called ColdSpring:
    [url]http://cfopen.org/projects/coldspring/[/url]

    There is another incarnation of this called ChiliBeans (I believe)
    that's part of the Model-Glue MVC framework:
    [url]http://www.model-glue.com/[/url]

    This might give you some additional resources/ideas.

    Matt

    --
    Matt Woodward
    [email]mpwoodward@gmail.com[/email]
    Team Macromedia - ColdFusion

    mpwoodward *TMM* Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139