Enterprise Java

Modern Web Development

In the last few years web technology has lived through rapid growth and heavy change. We went from frames to table layouts, to column layouts, to responsive layouts. From html4 to xhtml & flash to html5. From heavy server to rich client. From rpc to soap to rest. From sql to nosql and big data. From MVC to MVP and so on. In the following post i want to describe what has become state-of-the-art from my perspective.

A Backend is a REST api

Every backend should be seen as a REST api and every controller as another resource. You want to analyze your problem domain, find your resources and design proper paths for them. They become the M in your MVC Architecture. Developing a webapplication first, and adding an extra REST api later on has to be considered an antipattern. If you do make a REST api, you want to consequently use it yourself, making your frontend its first consumer. This procedure allows you to smoothly add different kinds of clients later on, such as a mobile app or even a desktop application. It’s also the foundation to integrate your applications features into other applications.

Separate your Frontend

The days when you made up a form using jsp with a jstl form validation are fading. You don’t want to mix client with server technology anymore. The V and C of MVC has shifted over to the client and your backend just represents the Model. You want your frontend to be completely separated using client technology only (html/css/js) and consuming your REST api. GUI logic, building and aligning proper html elements can be achieved within javascript. The most appropriate content-type for information exchange between the backend and frontend would be json or even xml.

Rich Client & Hail JavaScript

The MVC pattern is nowadays implemented on the client side using javascript and it’s fellow frameworks. There is no full-blown complete javascript framework that can achieve everything out of the box, but there are tons of smaller libs solving atomic tasks. This should not be considered bad or overwhelming, but advantageous. It causes a great variety of tools that focus on solving single problems outright. Backbone is a popular mvc framework built upon underscore, a js library delivering great utility with remarkable functional programming features. A template engine like mustache or handlebars could be added and requirejs would manage the dependencies within your modules. Of course, a dom manipulator like jquery cannot be left out. The trend is leading towards SPA‘s (Single Page Applications) with heavy AJAJ/AJAX, routing through html #anchors representing bookmarkable view-states.

Implement a Buildprocess for your Frontend

As Browsers are continously increasing javascript performance and adding more and more support for html5, frontends have become complex and sophisticated. You now want to add a build process for your frontend, compiling all your js and css files. You want to deliver only a single minified js file to the browser. Other than that we don’t break the DRY principle writing styles anymore. We use dynamic stylesheet languages like less to make our styles smarter and cleaner and compile them to css in our build process. Node and rhino are possible engine candidates to build your frontend. While node is much faster, it requires an easy installation on the build server. Rhino runs in a jvm, thus not requiring an installation. You can add it to your project as a maven dependency.

Mobile Web & Responsive Design

Mobile devices are becoming more powerful in terms of hardware whilst html5 support is also rapidly increasing on mobile browsers. Html5 could potentially make native mobile applications obsolete one day. Localstorage, SQL, Geolocation, Multimedia, Camera Access, Web Sockets, Graphics, Touch Events, WebGL, Filesystem Access, Notifications and many more are all features to be completely available to mobile html5 webapplications one day, hopefully working on all devices. So far, we have been developing multiple applications for android/ios/windows mobile and so on, being an economic nightmare.
Mobile clients have gained a substantial amount in web consumership, and cannot be ignored anymore. Therefor you want to make your GUI reponsive, beeing able to scale down to smaller display-resolutions. Wise companies have even started designing userinterfaces for the smallest resolution before even thinking of a desktop resolution. This makes scaling more easy, since the other way round is harder and tends to force painfull workarounds. Bootstrap is one of many libraries that help you make your gui responsive. You can use initializr to get started.

GWT or ZK Framework? Use Neither!

GWT/ZK are trying do deliver a framework that makes it possible to develop modern ajax web applications using Java only. So they are basically building a java wrapper for frontend technology. Other than that, they deliver a huge amount of components. BUT … i’d like to question their philosophy for many reasons.

  • They Both produce quite bad html code making you end in an element and dom-id nightmare that gets hard or even impossible to test, debug and style. Html5 allows to write short, clean and readable code, organized way better. You want to write html yourself.
  • Their AJAX calls are not based on the REST api that you need. If you want a REST api, you may have to write that again. RPC is GWT’s primary communication-technologym and i am really concerned about that. But you can still make a REST api work with GWT if you like to.
  • They keep you away from the technology that you are actually producing. Tiny customizations can get hard or even impossible in the end. You are basically giving up control and limiting your possibilities. This might in many cases lead to dead ends, that are based on the framework, not the technology. GWT helps to overcome this problem offering JSNI.
  • They are never up to date. While browsers are evolving rapidly, new features have to be implemented in the Java-Wrapper before you can even use them, delaying your up-to-dateness.
  • I doubt that wrapping native front-end technology is a good idea, and i don’t see a reason for doing it. One pro GWT argument might be: it’s generating optimized JS code.

In the end they make it easier to build webapplications for former java.awt/swing developers, who have no to little knowhow of html/css/js.
They defintively have their place right now and aren’t a bad choice in some cases.
 

Reference: Modern Web Development from our JCG partner Gregor Riegler at the Be a better Developer blog.

Gregor Riegler

Gregor is a passionate software engineer and RESTafarian who loves to continuously improve. He is interested in modern web development, oo-design and extreme programming. He is also serious about clean code and TDD.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

21 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Gonzalo
Gonzalo
10 years ago

Excelent post!

bettomcrose
bettomcrose
10 years ago

Excelent post! (2)

Mike
Mike
10 years ago

Fat-client + RESTful is a nice pattern. But calling GWT/ZK anti-pattern is too much. Actually the philosophy of GWT and ZK are quite different (so is REST). They have their own strong applications.

Alex
Alex
10 years ago

About Mobile Web Apps, you should read an article from Drew Crawford pointing out why they won’t replace native apps, at least for now: http://sealedabstract.com/rants/why-mobile-web-apps-are-slow/

Marc
Marc
10 years ago

Rich client + RESTful API is great. I am favoring it for years. However more often than wanted I have to put it down and use template based HTML generation because of heavy SEO requirements which demand for distinct pages.

Jarda
Jarda
10 years ago

GWT:
1: false
2: false
3: false
4: you can always get into native JS if you need to

Gregor
10 years ago
Reply to  Jarda

Hi, I’m the author of this post. Can you please go into more detail for the points that you have stated false? From my experience GWT creates a lot of unnecessary divs/table elements, and inline styles. I mean just go on the GWT showcase page. They are generating nested Tables for what is in fact a List. This is pretty terrible. For the second point: GWT-RPC is the default way, and RPC is not optimal. I stated in my post that there is a REST extension. On the third Point i know its true for ZK. But i might be… Read more »

rabbit
rabbit
10 years ago
Reply to  Gregor

1. Using GWT widgets is not mandatory. My code isn’t using any and the produced html is very clean. (Check http://gwtbootstrap.github.io/#base: for examples)

2. All my GWT applications are using REST backend.

3. That’s totally wrong.

4. Partly right, but even if you do not have a wrapper for new features, you can still access them.

GWT main interest is to avoid writing js which allow you to build complex applications.

For JavaScript access there’s JSNI http://www.gwtproject.org/doc/latest/DevGuideCodingBasicsJSNI.html

Christian Kütbach
Christian Kütbach
10 years ago
Reply to  rabbit

Thanks for your comment.

I am a GWT developer since some years and I completely disagree to the original post.

1. There may be some widgets, which may have a large DOM. But you always can write slim widgets

2. AutoBeans are cool, if you simply want to transform JSON into Objects
https://code.google.com/p/google-web-toolkit/wiki/AutoBean

3. What should I add here? I never got into serious problem using GWT.

4. JSNI is really cool. But only use iit, if you really have to.

Thanks for you clarification

Christian

Christian
10 years ago
Reply to  rabbit

Thank you for outlining that the GWT idea in it’s core is to abstract the writing of JS into a language that has a way better tooling environment than JS has right now. Widgets, DOM, JS native invokations, backend communication and so on is packaged with GWT, but you don’t have to use it. Write your own widgets, invoke your own JS code to adapt third party libraries, connect to your own backend using your own style of communication. But instead of doing this in native JS you can do it in your IDE with the whole power of it… Read more »

Roger
Roger
10 years ago

Really stupid post. Suggesting to use XML for client-server communication. Please (especially if you’re talking about mobile clients). And then all reasons stated against GWT/Zk are so wrong that they’re in reality the reasons you want to use them!

Gregor
10 years ago
Reply to  Roger

I suggested json primarily, of course. But since XML is practically possible, it’d be wrong to not mention it. Of course, as everyone knows XML is slower, thus not very optimal for mobile.

About the second Part. If you really think this is why you want to use ZK/GWT: Go ahead and give some reasons for what you have argued. I’m very curious.

Nick
Nick
10 years ago

▪ They produce the most garbage html code you can think of making you end in an element an dom-id nightmare that gets hard or even impossible to test, debug and style. Html5 allows to write short, clean and readable code, organized way better. You want to write html yourself. This sounds more like a review of GXT than GWT. GXT results in a complex DOM that you probably wouldn’t want to try styling by hand, but thats OK since you are relying on GXT to provide the style for you. If on the other hand you are using plain… Read more »

Gregor
10 years ago
Reply to  Nick

thank you for your constructive feedback. my gwt experience is limited so might in fact have leveraged zk weaknesses onto gwt too much. it seems that gwt really tries to overcome the problems that i stated. so i will have to edit my post.

nevertheless im really concerned that
– rpc is the primary gwt ajax way
– generated code in the showcase and example apps is really bad. inline styles, and nested tables for a simple list are just too much.

but the optimized javascript ouput is really a good thing

Dan
10 years ago

Good post regardind rest but no real understanding of GWT as pointed out by others.

koma
koma
10 years ago

GWT : 1) They produce the most garbage html code : NO, GWT produces optimized code. Or else, never use jquery.min.js only jquery.js. 2) Their AJAX calls are not based on the REST api that you need : Why can’t a GWT client talk to a REST service ?? Have you ever even used GWT ? 3) They keep you away from the technology that you are actually producing : Why don’t you write everything in assembler then, you will have more feeling with your underlying technology ! 4) They are never up to date : check Elemental in GWT,… Read more »

Gregor
10 years ago
Reply to  koma

1) i learned that they produce optimized javascript. but their html seems not very optimized
2) i even stated what you said in my post
3) i wont compare assembler with native frontend technology. thats too much
4) I like Elemental. And JSNI seems necessary. So it might not be as easy as to say: never up to date. You can be up to date if you need to.

koma
koma
10 years ago
Reply to  koma

Have you ever optimized HTML ????

Gregor
10 years ago
Reply to  koma

I guess optimized is not the right word. But it means a lot to me that my html code is correct and clean. When i look at the GWT Showcase at this for example: http://gwt.googleusercontent.com/samples/Showcase/Showcase.html#!CwMenuBar This would be a classic Unordered list in html, but GWT is using Tables. Tables are not appropriate in this case. This is a “hack”. Same here: http://gwt.googleusercontent.com/samples/Showcase/Showcase.html#!CwTree This should be nested lists not nested tables. And look at the styles. They are all inline. This bears disadvantages. But i guess you can still use css classes in GWT. Now look at Vaadin: http://demo.vaadin.com/sampler/#ui/structure/tab-sheet Nested… Read more »

Emilio
10 years ago
Reply to  Gregor

You can use html for Layout.

This example is the implementation of one of the widgets in GWT. Changing the implementation of that widget solved the problem.

Vaadin, GXT and others frameworks have their library of widgets, you can decide to use or not

GWT is much more than UI widgets.

Emilio
10 years ago

First, ZK is a server-side framework, GWT is a client-side SDK (not framework). “They produce the most garbage html code you can think of making” Think as bytecode. javascript DOM handle is a nightmare. GWT solves this in an elegant way. Yo can layout with HTML + CSS with http://www.gwtproject.org/doc/latest/DevGuideUiBinder.html Native integration of twitter bootstrap https://github.com/gwtbootstrap/gwt-bootstrap , You can also directly use twitter bootstrap for layout. http://www.jboss.org/errai , pure HTML + CSS “Their AJAX calls are not based on the REST api that you need” http://www.gwtproject.org/doc/latest/DevGuideCodingBasicsOverlay.html https://code.google.com/p/google-web-toolkit/wiki/AutoBean http://restygwt.fusesource.org/ “They keep you away from the technology that you are actually producing”… Read more »

Back to top button