Did you know? DZone has great portals for Python, Cloud, NoSQL, and HTML5!

mvc

  • submit to reddit

The MVVM Pattern in ZK Java Ajax

The "Presentation Patterns In ZK" slides first given at the 2010 UK ZK Users Group has been refreshed. The sample code for the presentation has the same screen implemented three times; once as MVP, once as MVC and once as MVVM (aka "MVB"). The presentation is...

1 replies - 657 views - 09/25/11 by Simon Massey in Announcements

Thoughts on modified MVC for web application development

I have been doing Java EE development for a long time, almost as long as Java EE first started way back before it was branded as Java EE.  I have noticed a lot of trends in Java developers’ work and one trend I consider most disturbing is a tendency to...

2 replies - 776 views - 08/15/11 by Mike Dzone in Announcements

A Cleaner MVC Inspired by Continuation-Passing Style

With this article I'm starting a series derived from how I'm designing blueBill Mobile, an Android application, but in addition to technology-related topics (not only Android) I'll talk a lot about general design strategies. A relevant effort...

0 replies - 11783 views - 06/22/11 by Fabrizio Giudici in Articles

Spring MVC and Struts Tiles example

One way to learn a new program language or a new framework is do a "Hello World" or a CRUD application to start to understand about the technology, lifecycles, dependencies, configurations and limitations.

3 replies - 4741 views - 02/21/11 by Valdemar Júnior in Articles

Adding CRUD Capability to Spring MVC

This article is intended for people who are interested in Spring and Hibernate, especially those who are new to the technology. Create, Read, Update and Delete capabilities are essential to a web based application. In this article, I'll be sharing how to add...

5 replies - 6618 views - 12/09/10 by Paul Sydney Orozco in Articles

Modern-day web development with Maven, Mercurial and Spring MVC - Part 2

A couple of weeks ago, I posted an article demonstrating how easy web developement in Java is these days. This article extends the previous and takes the Spring MVC annotated approach to a more real-world level.The Plunge The first thing we'll do is create...

7 replies - 4646 views - 08/06/10 by Alex Collins in Articles

Web MVC in Java (without frameworks)

The Model-View-Controller architectural pattern is a classic trait of Java applications. For example, Swing is a well-known implementation of this pattern in the context of desktop applications.MVC is part of the oldies but goodies group of patterns: since...

1 replies - 9208 views - 07/01/10 by Giorgio Sironi in Articles

Review - JavaServer Faces 2.0: The Complete Reference

JavaServer Faces (henceforth, JSF), is a key technology in the Java EE 5/6 platform.  It is a component-based MVC presentation layer framework that is very popular now in the Java community.  JSF...

2 replies - 4852 views - 05/04/10 by Arbi Sookazian in Book Reviews

Event-Driven MVC with JSF and JBoss Seam - Common Pitfalls

Most Java web frameworks were designed with MVC in mind; however, JSF is probably one of the only few that achieved the goal. Combining JSF with JBoss Seam and Facelets, a developer can implement the MVC design pattern by using:

2 replies - 11785 views - 03/17/10 by Ed Lee in Articles

The JavaFX Scenegraph Dilemma

There is a problem with JavaFX when using it to render more complex scenes: the scene’s memory use increases and performance degrades as more and more nodes are added to the scene. "A dilemma is a problem offering at least two solutions or...

28 replies - 7198 views - 08/06/09 by Thomas Buhr in Articles

Intuive MVC Pattern for Ajax Applications

ZK 3.6.1 released recently. ZK is a Direct RIA framework to increase developer’s productivity by integrating frontend and backend of applications transparently to deliver rich, and engaging user experience.

0 replies - 2384 views - 04/29/09 by Robbie Cheng in Announcements

Using Desktop MVC Patterns with ZK, Spring & JPA

In this article I will discuss the "ZkToDo2" sample application that demonstrates desktop MVC patterns using the ZK RIA AJAX framework, Spring and JPA. The Spring and JPA configuration used in this article are adapted from the persistence add-on of...

6 replies - 31351 views - 03/12/09 by Simon Massey in Articles

PureMVC Framework: GWT Compliant

PureMVC, the well-known Java AS3 framework, is now available for Java and GWT. PureMVC is a lightweight framework for creating applications based upon the classic Model-View-Controller design meta-pattern.  The pureMVC Java Multicore Version supports modular...

0 replies - 4207 views - 10/20/08 by DSI opensource in Announcements

Spring Web MVC - Spring Web Flow Working With JasperReports

An important requirement in a lot of applications is reporting. It can be internal reports (same application jsp/html) or to an external format like xls,pdf or xml etc. A popular reporting engine is JasperReports. In the past few months I have seen a common...

20 replies - 72369 views - 10/13/08 by Manuel Jordan in Articles

Why is Web UI Development Slow?

Have you ever been a team member in a web framework or web product development? You may have noticed although UI prototyping is a fast process but UI integration is disappointingly slow. Have you thought why does this happen? Is it because of not using MVC...

27 replies - 24747 views - 07/19/08 by Ali Loghmani in News