Sviluppo Web Agile con Castle MonoRail Diego Guidi [email protected] DotNetMarche.Start() 12 ottobre 2006 Sono io? Dott. Diego Guidi http://dotnetmarche.org/members/D_Guidi.aspx http://nts.sourceforge.net/ http://blogs.ugidotnet.org/GisSharpBlog http://lacorrente.blogspot.com [email protected] Oggi parliamo di… MonoRail Porting di Ruby On Rails Agile Web Application Framework MVC-Based Basato su architettura .NET e ASP.NET Parte del “Castle Project” Licenza: “Apache License, Version 2.0” Non legato a MONO! Ruby On Rails Buzzword del 2006 - dopo Web 2.0 ovviamente! Ha imposto all’attenzione di tutti Ruby come linguaggio di programmazione Ha imposto all’attenzione di tutti un modello di programmazione “agile” MonoRail recepisce ed estende RoR Fonte: http://radar.oreilly.com/archives/2006/08/programming_language_trends_1.html Molti nemici, molto onore… DJango: GRails: Akelos: Flex On Rails: SubSonic: The Zero Code DAL Python based Java based PHP based Flash/Flex based .NET based Estremamente automatizzato Poco flessibile (al momento…) http://www.codeplex.com/Wiki/View.aspx?ProjectName=actionpack Agile Web Application Framework MVC-Based MVC-Based: Model: mantiene lo stato dell’applicazione e si occupa della persistenza sul database. View: responsabile della presentazione dei dati del modello e dell’interfaccia utente. Controller: riceve gli eventi dall’utente, interagisce con il modello e richiama la vista corretta. Separazione dei compiti Ogni cosa al suo posto! Agile Web Application Framework MVC-Based MVC-Based: http://dotnetmarche.org/home/index.rails - home: controller - index: action (metodo) del controller home - index: view associata al controller home Agile Web Application Framework MVC-Based AGILE: promuove un modello di sviluppo che, automatizzando i task ripetitivi, permette allo sviluppatore di concentrarsi sull’applicazione e non sull’infrastruttura. Convention Over Configuration: limitare al minimo la necessità di file di configurazione, favorendo al contrario le convenzioni. DRY (Don’t Repeate Yourself): evitare le ripetizioni di codice favorendo la condivisione. Test Support: supporto per i test funzionali (controller). Applicazione Demo Costruzione di un progetto di base con Castle MonoRail MonoRail components: ActiveRecord Rappresenta la parte Model di MonoRail Implementazione del pattern ActiveRecord: “An object that wraps a row in a database table, encapsulates the database access, and adds domain logic on that data.” (Fowler, Patterns of EEA) Basato su NHibernate Persistenza gestita tramite meta-programmazione (attributi) Non è necessario scriversi i file di mapping! Validazione semi-automatica, gestita tramite attributi. Operazioni CRUD ereditate dalle classi base. Disponibile anche separatamente da MonoRail MonoRail components: ActionPack Rappresenta la parte View e Controller: Controller: Funzionalità di base per la gestione del flusso dell’applicazione Gestione automatica e trasparente della sessione View: Motore “ufficiale”: basato su NVelocity Motori in sviluppo: WebForm, StringTemplate, Boo… Strumenti per la generazione di html MonoRail vs WebForms WebForms: +: Infrastruttura basata su .NET +: Supporto, documentazione, comunità di sviluppatori, ecc… – : Complessità nella creazione e manutenzione delle applicazioni http://hammett.castleproject.org/?p=59 “…my problem is that to do something that is more complex than just simply displaying one form on a page ASP.NET gets pretty complicated. Events are firing all over the place. I have to take viewstate into account… and then it became even more difficult to get stuff to respond the way I want them to respond. All in all it takes a really long time before I get something done properly….” http://www.brianromanko.com/2006/10/aspnet-on-rails.html “Part of the reason for Ruby on Rails' quick adoption is that it provides a solid framework for development that has enough features to keep us framework quasi-developers happy while staying out of the way enough to make the framework work for the developer instead of against them (CSLA anyone?). It's slick and sexy. It's the iPod of development frameworks. MonoRail vs WebForms MonoRail: +: Infrastruttura basata su ASP.NET, .NET e Castle +: Semplicità nella creazione e manutenzione delle applicazioni http://www.brianromanko.com/2006/10/aspnet-on-rails.html Part of the reason for Ruby on Rails' quick adoption is that it provides a solid framework for development that has enough features to keep us framework quasi-developers happy while staying out of the way enough to make the framework work for the developer instead of against them (CSLA anyone?). It's slick and sexy. – : Supporto, documentazione, comunità di sviluppatori, ecc… – : View basate su NVelocity, Model e Controller basate su C# - VB.NET Tutorial.Start() DotNetMarche BookStore Domande? Slide e Materiale www.dotnetmarche.org Grazie!