Is MVC architecture applicable for web environment??

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • ketulp_baroda@yahoo.com

    Is MVC architecture applicable for web environment??

    Hi
    Is the true mvc architecture ( with observer-observable pattern as
    implemented in JAVA) not applicable for web environment??
    I mean to say that the HTTP protocol is request/response based so
    there is no notion of an "event" being notified ...
    whereas the observer-observable pattern is based on event.
  • Peter Hansen

    #2
    Re: Is MVC architecture applicable for web environment??

    ketulp_baroda@y ahoo.com wrote:[color=blue]
    >
    > Is the true mvc architecture ( with observer-observable pattern as
    > implemented in JAVA) not applicable for web environment??
    > I mean to say that the HTTP protocol is request/response based so
    > there is no notion of an "event" being notified ...
    > whereas the observer-observable pattern is based on event.[/color]

    Google might help you:


    Comment

    • Kevin Dahlhausen

      #3
      Re: Is MVC architecture applicable for web environment??

      This caused me a lot of frustation when I moved to a java development
      house. What most people call MVC in relation to web based apps is
      not what the traditional MVC is in the sense of OWL, Fresco, and the
      like. ( I've noticed in the java world that pundits tend to grasp a
      concept, skew it, and promote it.)

      People are actually referring to the common notion of a layered model
      where there's a domain or persistence layer, 'controller' code that
      manages flow of the pages and marshalling and unmarshalling web-form
      data to domain objects, and a 'view' layer that is often the
      templating system or server-pages.

      It works well enough, especially on larger projects, I just wish it
      were called something other than MVC.



      ketulp_baroda@y ahoo.com wrote in message news:<f046efac. 0402260204.2ed4 588b@posting.go ogle.com>...[color=blue]
      > Hi
      > Is the true mvc architecture ( with observer-observable pattern as
      > implemented in JAVA) not applicable for web environment??
      > I mean to say that the HTTP protocol is request/response based so
      > there is no notion of an "event" being notified ...
      > whereas the observer-observable pattern is based on event.[/color]

      Comment

      • ketulp_baroda@yahoo.com

        #4
        Re: Is MVC architecture applicable for web environment??

        kdahlhaus@yahoo .com (Kevin Dahlhausen) wrote in message news:<283adf56. 0402260943.73bb 05fb@posting.go ogle.com>...[color=blue]
        > This caused me a lot of frustation when I moved to a java development
        > house. What most people call MVC in relation to web based apps is
        > not what the traditional MVC is in the sense of OWL, Fresco, and the
        > like. ( I've noticed in the java world that pundits tend to grasp a
        > concept, skew it, and promote it.)
        >
        > People are actually referring to the common notion of a layered model
        > where there's a domain or persistence layer, 'controller' code that
        > manages flow of the pages and marshalling and unmarshalling web-form
        > data to domain objects, and a 'view' layer that is often the
        > templating system or server-pages.
        >
        > It works well enough, especially on larger projects, I just wish it
        > were called something other than MVC.
        >
        >
        >
        > ketulp_baroda@y ahoo.com wrote in message news:<f046efac. 0402260204.2ed4 588b@posting.go ogle.com>...[color=green]
        > > Hi
        > > Is the true mvc architecture ( with observer-observable pattern as
        > > implemented in JAVA) not applicable for web environment??
        > > I mean to say that the HTTP protocol is request/response based so
        > > there is no notion of an "event" being notified ...
        > > whereas the observer-observable pattern is based on event.[/color][/color]

        Hi
        I want to know wheteher observer-observable pattern is applicable for
        web environment?? I mean to say that the HTTP protocol is
        request/response based so
        there is no notion of an "event" being notified ...
        whereas the observer-observable pattern is based on event.

        Comment

        Working...