Flowing on the Rails

|
MVC Pattern을 충실히 지키는 웹프레임워크 Rails의 데이터 플로우를 설명한 자료입니다. J2EE 에서도 흉내는 내지만 직관적으로 MVC 패턴을 적용하기 위해서는 상당히 복잡하고 힘들지요. 그런면에서 매우 맘에 듭니다. 직관적인 툴과 환경이 말이죠. 참고로 툴과 환경이 최적으로 결합된 ASP.NET 2.0과는 비교될 수 없지만 적어도 오픈소스기반의 웹프레임워크에는 향후 Rails의 영향력이 상당히 커질라고 믿습니다. 반면에 우리나라에서 많이 쓰이기 위해서는 더 많은 시간이 필요할 것으로 생각됩니다만, 파이썬이 그랫듯이 향후 많은 개발자들이 참여할 것으로 생각됩니다.

Model:Active Record , Contoller : Action Controller,View : Action View

Active Record
Connects business objects and database tables to create a persistable domain model where logic and data is presented in one wrapping.


Action Pack
Routes incoming requests through controllers with one method per action and lets view rendering happen using Ruby templates.


Action Mailer
Consolidates code for sending out forgotten passwords and invoices for billing in easy-to-test email service layers on top of smtp or sendmail.





Source: http://www.enomaly.net/ruby_on_rails.1013.0.html
And