Presentation is loading. Please wait.

Presentation is loading. Please wait.

Web App Frameworks aka The Luke and Josh Variety Hour.

Similar presentations


Presentation on theme: "Web App Frameworks aka The Luke and Josh Variety Hour."— Presentation transcript:

1 Web App Frameworks aka The Luke and Josh Variety Hour

2 servlets are terrible Way too many System.out.println ’s Tightly coupled Umm... sessions The ultimate DIY

3 web frameworks are cool Fewer System.out.println ’s Hide the gross stuff (sessions...) Lots of free stuff Steep learning curve :(

4 the basics Model (the stuff) View (the pretty face) Controller (the middleman)

5 model (the stuff) Persistent data Trucks, POs, etc.

6 controller (the middleman) Pull data / I can has trucks? Push data / save the truck’s state

7 view (the pretty face) Show the trucks Edit the trucks

8 Seam It’s pretty cool I guess

9 seam model Model = Java object + annotations Truck.java

10 seam controller Controller = Java object + annotations YardController.java

11 seam view View = XHTML trucks.xhtml

12 Ruby on Rails Why it is Always the Right Answer

13 rails “Web development that doesn’t hurt.” Based very strongly on the Ruby scripting language Heavily Object-Oriented Dynamic type Basically, it’s scripting for the web. Well-developed programming paradigm Huge community support and documentation

14 paradigm RESTful design REpresentative State Transfer Designs data control into the four natural states of HTTP communication Not specific to Rails, just the adopted paradigm States: The CRUD Model UD CRUD POST Create GET Read PUT Update/Create DELETE Delete HTTP CRUD POST Create GET Read PUT Update/Create DELETE Delete HTTP CRUD POST Create GET Read PUT Update/Create DELETE Delete HTTPCRUD POSTCreate GETRead PUTUpdate/Create DELETEDelete

15 paradigm Reasons for RESTful design Clean, meaningful organization Organized by action Concise way of sending data Improves consistency and data integrity Simplified interface design Three components View data Create new entry Edit existing entry HTTPCRUD POSTCreate GETRead PUTUpdate/Create DELETEDelete

16 design How It Looks: an MVC example The Model, Part I

17 design The Model, Part II

18 design The Views

19 design The Views: Partials

20 design The Views: New

21 design The Controller: Part 1

22 design The Controller: Part 2

23 why rails is better Single-Source Solution… mostly Install Ruby and RoR and you’re ready to start. The total MVC solution is wrapped up in Rails, no need for: JBoss framework Seam Hibernate JSF Richfaces This includes JavaScript/AJAX functionality. All Ruby code which is rendered to HTML/Javascript later.

24 why rails is better Integration across platform much smoother, all Ruby/Rails code, no need for other layers. Because of this, it’s faster. More control over finer details of: Server environment Development or Production Database setup – lots of options Optimization – lots of opportunities for this Large number of plugins Can get a bit over-the-top if not careful.

25 downfalls Still gaining adoption on a large scale Very strict definitions (namely database naming conventions) A bad thing? Optimization is not automatic, programmer needs to do a lot to optimize Takes smart programming to gain in efficiency A bad thing? Not as many sweet built-in GUI features

26 Last Word Use Ruby on Rails... it’s amazing

27 Questions?

28 references http://www.seamframework.org/Documentation/GettingStarted http://livedemo.exadel.com/richfaces-demo/richfaces/message.jsf?s=glassX http://www.infoq.com/articles/jboss-seam http://rubyonrails.org/- Ruby on Rails sitehttp://rubyonrails.org/ http://www.railsbrain.com/ - Rails documentationhttp://www.railsbrain.com/ http://railscasts.com/- Rails Tutorials via Screencasthttp://railscasts.com/ http://railsforum.com/ - Rails help / discussion forumhttp://railsforum.com/


Download ppt "Web App Frameworks aka The Luke and Josh Variety Hour."

Similar presentations


Ads by Google