Filed under Uncategorized

careers.comsysto.com goes live!

careers.comsysto.com ist die neue Karrierewebseite der comSysto GmbH! Mit dem Launch der Karrierewebsite intensiviert die comSysto GmbH ihre Suche nach motiviertem, hochqualifizierem Fachpersonal in den Bereichen JEE, Business Intelligence und Oracle Datenbank Administration.

Die neue Karriereseite richtet sich an Studenten, Absolventen und Professionals, die daran interessiert sind, ihren beruflichen Erfolg in einem stabil wachsenden Unternehmen weiter zu entwickeln und Teil eines starken Teams zu werden. Neben allgemeinen Informationen zu Kompetenzen und angewandten Technologien, den Kunden und Branchen, in denen die comSysto GmbH tätig ist, sowie der Unternehmenskultur, werden auf careers.comsysto.com regelmäßig offene Positionen im Unternehmen veröffentlicht. Hier sind eine Beschreibung der Positionen, sowie die fachlichen und persönlichen Anforderungen an den Bewerber zu finden. Als ein individuell fördernder und mit zahlreichen, ergänzenden Leistungen das Engagement belohnender Arbeitgeber, finden sich auf der Website zudem eingehend beschriebene Informationen zu den Benefits, die die Chancen und Perspektiven des Mitarbeiters bei comSysto unterstreichen. Einen ersten Einblick in die Vielfalt des Teams, in ihre fachlichen Kenntnisse und Fähigkeiten, sowie in Unterhaltsames aus dem Nähkästchen, erhält man ebenfalls auf der neuen Karrierewebsite.

Why choose Apache Wicket?

Initially I just can say: Wicket is the best web framework I have ever used. Meanwhile I have successfully finalized my third project with it. In the following few lines I will try to list the arguments for using wicket from both business and technical point of view, but the most important one is actually that each of those projects has been a success story at the end.

Business aspects

Open-Source and free

Apache Wicket is free. There are no license costs and you are not bound to a ‘one and only’ company for support. If you are having trouble with a consulting company you work with, simply go and find a better supporter. Before Wicket we used a commercial Struts-like framework and we were not allowed to get the source code of the framework in question so we had to debug and search for bugs without it. It took weeks before we got our support requests answered and even months before we got the bugfixes delivered for that framework.

Fast development turnaround safes time and money

The development turnaround is very fast. One of our customers told us, since we switched to Apache Wicket the velocity is three times faster than before (measured with scrum tools).

Wide-spread knowledge

Wicket provides a big community which reacts on bugs and questions quickly. Knowledge about that framework is wide-spread and not just centralized in one company. What if the company which provides a closed-source web-framework go bust? You are dependent on that company. Furthermore the documentation and examples of Wicket usage are increasing. In contrast the commercial framework we used: the documentation was bad and had not evolved so that you have had to contact the support and pay for it.

Higher quality and stability

Since we use Wicket we have less bugs, a higher stability and qualtity in our software. But what Wicket cannot do is automatically write good code and correct architecture flaws. So you will need good developer with strong object orientation skills. Meanwhile you can find a lot of companies and developer which provide Wicket know-how and support, so the argument of missing development resources is not valid anymore.

Avoiding software erosion and react on requirement changes fastly

Wicket provides very good refactoring capabilities that enables you to react on requirement changes quickly. Additionally the refactoring capabilities keep the software erosion low. Often a software is already outdated on its first launch, because the requirements have often changed. Most web frameworks does not provide good refactoring capabilities, so that developer avoid bigger changes. After a while you often cannot understand the business logic from the source code anymore, but you should. So the software is already outdated and software erosion has taken control over.

Developer acceptance

In my experience Wicket has high acceptance by developer and motivated developer are more productive. Thanks to testabilty you can detect bugs early. There is a high reuse of existing frontend parts and aspects through components. Ideally you can create a component catalog, where the business department picks the components from and build there websites with it.

Technical aspects

Less technologies

There are just two technologies: Java and XHTML. This makes it easy to learn Wicket, you do not have to learn new templating engines. You just bind your components to the XHTML through an own Wicket namespace. Everything can be bundled in a jar file and these can be bundled within war files. Less technologies causes less failure points. The only failure points are the binding between the java component and its matching HTML and the property paths of the PropertyModel. These possible failures can be completely reduced with unit tests though.

Pure object-orientation

This is an advantage and disadvantage. A lot of developer are not able to develop object-oriented. Most people learn to use the power of object-orientation with Wicket. They have been developing Java for years, but they developed procedural mostly. What are services? Procedural. What are controllers in Struts? Procedural. What are beans? Just value holders. There is no real object-orientation. Wicket changes that, so the challenge is not to learn Wicket, but rather learn object-orientation. Object-orientation makes it easy to develop and cut clear business aspects.

Separation between layout and logic / JSP-free

Wicket uses pure XHTML which is XML. You have a clean HTML template with Wicket’s own namespace, so that you can bind the Wicket components to it. JSPs are bad. They are not compile-save, often confusing, usually containing a lot of business logic and they are not testable. At least you cannot bundle them into jar-files. In Wicket all the logic is in Java-code which makes it compile-save, unit testable and debugable. The raw HTML-Template makes it easy for a web designer to customize layout. So you can easier split the work between web designer and developer. Normally developer are more expensive than web designer and the developer should not waste his/her time with doing layout. Nevertheless both need to communicate with each other to integrate a layout appropriately.

Refactoring capabilities / Keep the business logic up-to-date

Refactoring is a major issue in development. It is always needed when requirements are changed and this happens very often. Frameworks like Struts use JSPs and other technologies which are not compile save. This makes a refactoring very hard, risky and sometimes impossible. So the developer hacks the changes into the existing skeleton. That causes an unclear and unmaintable code. Often the code is already outdated and fragmented before the first launch. As I explained above, Wicket just uses Java and XHTML. Due to its focus on Java it is possible to refactor code easily with existing tools like Eclipse. You keep your application logic in sync with the business logic. The few failure points can be covered with unit tests.

No session wasting and safe flows

In classic MVC applications everything was stored in the session. After a while the session was just a global garbage – sometimes a garbage dump. The developer forget to cleanup the session and it got bigger and bigger. Nobody knows whats in it. This can cause performance and security leaks. Furthermore every value gets unsafe casted, which can cause an unstable application and more bugs.

In contrast the Wicket session is type-safe. It can be a POJO. The Wicket session is just for global information like user authentification. Wicket pages are stateful. This allows to pass information from one page to another directly. Passing information from one page to another brings a lot of advantages. The user cannot start a flow without accessing the first page. This makes a flow safe. If a user aborts the flow, the passed data gets automatically cleaned up, because information is directly bound to that concret page instance. So you can concentrate on developing flows and not on data clean up.

Components

Components are reusable. Thus saves development time and avoids duplicated code. The logic for a busniess aspect is encapsulated in a component or in some components which can interact with each other. The encapsulation causes an easier understanding of business aspects from code. Furthermore these encapsulated components are easier to test. So the business logic is not wide spread over the code like in classic MVC web applications. There is a technical separation between model, view (which often uses expression languages) and controller. These layers cause that you have to spread one business aspect over these three layers. Normally you do not have only one business aspect. Then you are mixing all business aspects within the technical separations and later you cannot detect any coherent business aspect anymore. In contrast a component does exactly represent one business aspect and this one is reusable. Components can be bundled in jar files, so it is possible to share components between different departments. In some applications I have seen the “WAR-overlay” pattern, which extracts a bundled war file to copy it in another war file. I mean a bundled war file must not be extracted, it is already bundled and should work as it is. There are new risks like wrong configuration, destroying the encoding, etc. The developer have to do that, because JSPs are not packagable in jar files. In my opinion an anti-pattern, which is provided by default in Maven. As I explained in Wicket you can bundle all your components with markup in jar files and these jar-file can be bundled in a war file without extracting. Clean packaged.

AJAX integration

Nowadays a lot of web applications must provide AJAX-features. Wicket has a built-in and easy-to-use AJAX support. It is easy extensible and usable with AJAX frameworks like JQuery.

Testability

Wicket is one of very few web frameworks which provides a testing API. So you can validate that your components and pages do render and behave correctly. For example a registration form: a user provides values for all the fields and presses the register button. You can validate that the register-service call only happens when the form was successfully filled. For validating these calls you can use a mock framework like Mockito. Even AJAX testing is possible, but this is not sophisticated enough yet. Nevertheless the WicketTester provides the best testing API I have seen yet.

Conclusion

Wicket development is fun! I realized three projects with it. It just works and has caused very few problems. I think nobody of my collegues would switch to another framework. Wicket is the most productive web framework I have ever seen.

Thanks to Daniel Bartl and Samer Al-Huanaty for correction.

Apache Wicket – Best Practices

Apache Wicket became very popular in the last months and has been used in many projects. Due to the power of Wicket you can develop features very easy and fast. There are many ways to realize these features though. This article provides some cook recipes for the correct, efficient and pertinent usage of Apache Wicket.

This article is addressed to developers, who has already made their first experiences with Apache Wicket. Developer, who get into Wicket often have difficulties with it, because they apply the typical JSF and Struts patterns and approaches. These frameworks primarily use procedural programming methods. In contrast Wicket is strongly based on object oriented patterns. So forget the Struts and JSF patterns, otherwise you won't have fun with Wicket in the long run.

Encapsulate components correctly

A component should be self-contained. The user of a component should neither have to know nor care about its internal structure. She should just be familiar with its external interfaces and its documentation in order to be able to use it. This means in detail: Every component that extends Wicket's own Panel type (thus is a Panel itself) must provide its own HTML template. In contrast when a component extends the classes WebMarkupContainer or Form, there is no HTML template. This implicates that you should add components through composition in WebMarkupContainer or Form.

// Poor component
public class RegistrationForm extends Form<Registration> {
    public RegistrationForm(String id, IModel<Registration> regModel) {
        super(id, new CompoundPropertyModel<Registration>(regModel))
        // Wrong: RegistrationForm provides its own components
        add(new TextField(&quot;username&quot;));
        add(new TextField(&quot;firstname&quot;));
        add(new TextField(&quot;lastname&quot;));
    }
}

Listing 1

Listing 1 is an example for a poor component. The user of the RegistrationForm must know the internal structure of the markup and component in order to use it.

public class RegistrationPage extends Page {
    public RegistrationPage(IModel<Registration> regModel) {
        Form<?> form = new RegistrationForm(&quot;form&quot;);
        form.add(new SubmitButton(&quot;register&quot;) {
            public void onSubmit() {
                 // do something               
            }
        });
        add(form);
    }
}

<html>
<body>
    <form wicket:id=&quot;form&quot;>
        <!-- These are internal structure information from RegistrationForm -->
        Username <input type=&quot;text&quot; wicket:id=&quot;username&quot;/>
        First name <input type=&quot;text&quot; wicket:id=&quot;firstname&quot;/>
        Last name <input type=&quot;text&quot; wicket:id=&quot;lastname&quot;/>
        <!-- Above new components from page which the user knows  -->
        <input type=&quot;submit&quot; wicket:id=&quot;register&quot; value=&quot;Register&quot;/>
    </form>
</body>
</html>

Listing 2

Listing 2 shows the usage of the poor component in the RegistrationPage. You can see that the input fields firstname, lastname and username get used, even though these components are not added explicitly to the RegistrationPage. Avoid this, because other developers cannot directly see that the components were added in RegistrationPage class.

// Good component
public class RegistrationInputPanel extends Panel{
    public RegistrationInputPanel(String id, IModel<Registration> regModel) {
        super(id, regModel);
        IModel<Registration> compound = new CompoundPropertyModel<Registration(regmodel)
        Form<Registration> form = new Form<Registration>(&quot;form&quot;, compound);
        // Correct: Add components to Form over the instance variable
        form.add(new TextField(&quot;username&quot;));
        form.add(new TextField(&quot;firstname&quot;));
        form.add(new TextField(&quot;lastname&quot;));
        add(form);
    }
}

<html>
<body>
    <wicket:panel>
    <form wicket:id=&quot;form&quot;>
        Username <input type=&quot;text&quot; wicket:id=&quot;username&quot;/>
        First name <input type=&quot;text&quot; wicket:id=&quot;firstname&quot;/>
        Last name <input type=&quot;text&quot; wicket:id=&quot;lastname&quot;/>
    </form>
    </wicket:panel>
</body>
</html>

Listing 3

Listing 3 shows a cleanly cut input component, which provides its own markup. Furthermore you can see the correct usage of a Wicket Form. The components get added by calling form.add(Component) on the instance variable. On the other hand it is allowed to add behaviours and validators over inheritance, because those do not have markup ids which must be bound.

public class RegistrationPage extends Page {
    public RegistrationPage(IModel<Registration> regModel) {
        Form<?> form = new Form(&quot;form&quot;);
        form.add(new RegistrationInputPanel(&quot;registration&quot;, regModel);
        form.add(new SubmitButton(&quot;register&quot;) {
            public void onSubmit() {
              // do something               
            }
        });
        add(form);
    }
}

<html>
<body>
    <form wicket:id=&quot;form&quot;>
        <div wicket:id=&quot;registration&quot;>
           Display the RegistrationInputPanel
        </div>
        <input type=&rdquo;submit&rdquo; wicket:id=&quot;register&quot; value=&quot;Register&quot;/>
    </form>
</body>
</html>

Listing 4

Listing 4 shows the usage of the RegistrationInputPanel. There is no markup of another embedded components present anymore, just markup of components, which get directly added. The RegistrationPage provides its own form, that delegates the submit to all Wicket nested forms which are contained in the component tree.

Put models and page data in fields

In contrast to Struts Wicket pages and components are no singletons, they are stateful and session-scoped. This enables us to store user-specific information within pages and components. The information should be stored in fields. This way you can access the information within a class while avoiding long method signatures only for passing this very same information around. Instances of components can exist over several requests. For example a page with a form which gets submitted and produces validation errors uses the same page instance. Furthermore the same page instance gets used when the user presses the back button of the browser and resubmits this formular again. Information which gets passed by the constructor should be assigned to fields (normally this must be models). When storing information in fields you should consider that the information is serializable, because the pages are stored in Wicket's page map. By default the page map stores the pages on the hard disk. A non serializable object leads to NullPointerExceptions and NonSerializableExceptions. Additionally big data (like binary stuff) should not be stored directly in fields, because this can cause performance losses and memory leaks while serialization and deserialization. In this case you should use the LoadableDetachableModel, which can be assigned to a field, because this provides an efficient mechanism to load and detach data.

Correct naming for Wicket IDs

Naming is for many developers a dispensable thing, but I think it is one of the major topics in software development. With the help of correct naming you identify fastly the business aspects of a software component.

Additionally good naming avoids unneccessary and bad comments.

Bad namings for Wicket-IDs are birthdateTextField, firstnameField and addressPanel. Why? The naming contains two aspects: A technical aspect "TextField" and the business aspect "birthdate". Relevant is just the business aspect because the HTML template already presents the technical aspect through and the Java code presents it by "new TextField("birthdate")". So the technical aspects are already described. Additionally the incorrect naming adds a lot of effort when you do technical refactorings, e.g. if you have to replace a TextField by a DatePicker, in result of it you have to rename the Wicket ID from birthdateTextField to birthdateDatePicker. Another reason for avoiding technical aspects in Wicket IDs is the CompoundPropertyModel. This model delegates the properties to its child components named by Wicket IDs (see listing 3). For example the TextField username calls automatically setUsername() and getUsername() on the Registration object. A naming of the setter setUsernameTextfield() would be very unpracticable here.

Avoid changes at the component tree

You should picture Wicket's component tree as a constant and fixed skeleton which gets revived when its model is filled with data like a robot without brain. Without brain the robot is not able to do anything and is just dead and a fixed skeleton. However when you fill it with data, it becomes alive and can act. There is no need of changing hardware when filling him with data. Components can decide on the state by its own by viewing on the data, e.g. on its visibility. In Wicket you should manipulate the component tree as little as possible. Consequential you should avoid calling methods like Component.replace(Component) und Component.remove(Component). Calling these methods indicates missing usage or misusage of Wicket's models. Furthermore the component trees should not conditionally constructed (see listing 5). This reduces the possibility to reuse the same instance significantly.

// typical struts
if(MySession.get().isNotLoggedIn()) {
    add(new LoginBoxPanel(&quot;login&quot;))
}
else {
    add(new EmptyPanel(&quot;login&quot;))   
}

Listing 5

Instead of constructing LoginBoxPanel conditionally, it is recommend to add the panel always and control the visibility by overriding isVisible(). So the component LoginBoxPanel is responsible for displaying itself. We move the responsibility into the same component, which executes the login. Brilliant! Business logic cleanly encapsulated. There is no decision from outside, the component handles all the logic. You can see another example in "Implement visibilities of components correctly".

Implement visibilities of components correctly

Visibility of site parts is an important topic. In Wicket you control the visibility of components over the methods  isVisible() and setVisible(). These methods are within Wicket's base class Component and therefore it regards every component and page. Let's have a look to a concrete example of LoginBoxPanel. The panel just gets displayed when the user is not logged in.

// Poor implementation
LoginBoxPanel loginBox = new LoginBoxPanel(&quot;login&quot;);
loginBox.setVisible(MySession.get().isNotLoggedIn());
add(loginBox);

Listing 6

Listing 6 shows a poor implementation, because a decision of visibility is made while instanciating the component. Again in Wicket instances of components exist over several requests. To reuse the same instance you have to call loginBox.setVisible(false). This is very unhandy, because we always have to call setVisible() and manage the visibility. Furthermore you are going to duplicate the states, because visible is equal to "not logged in". So we have two saved states, one for the business aspect "not logged in" and one for the technical aspect "visible". Both is always equal. This approach is error-prone and fragile, because we always have to attend that the correct information will be set at every time. But this is often forgotten, because the logic is wide spread over the code. The solution is the Hollywood-Principle: "Don't call us, we'll call you.". Take a look at the diagram, there is an application flow with some calls. We avoid three calls through the Hollywood-Principle and we just have to instanciate the LoginBoxPanel.

Login Panel

 

public class LoginBoxPanel {
    // Konstruktor etc
    @Override
    public boolean isVisible() {
        return MySession.get().isNotLoggedIn();
    }
};

Listing 7

In listing 7 the control over visibility has got inverted, now the LoginBoxPanel decides over the visibility by its own. On each call of isVisible() there is a refreshed interpretion of the login state. Concluding there is no out-dated information state additionally saved. The logic is centralised in one line code and not spread application wide. Furthermore you can easily identify that the technical aspect isVisible() correlates to the business aspect "logged in". The same rules can be applied to the method isEnabled(). If isEnabled() returns false the components get displayed gray. Forms which are within an inactive or invisible component do not get executed. Sometimes there are cases you cannot avoid to call the methods setVisible() and setEnable(). An example: The user presses a button to display an inlined registration form. In general you can apply the following rules: Data driven components override these methods and delegates to the data model. User triggered events call the method setVisible(boolean). As well you can  override these methods by inline implementations (see listing 8).

new Label(&quot;headline&quot;, headlineModel) {
    @Override
    public boolean isVisible() {
        // Hidden headline if text contains &quot;Berlosconi&quot;
        String headline = getModelObject();
        return headline.startWith(&quot;Berlosconi&quot;);
    }
}

Listing 8

Note: Some people say that overriding isVisible() is bad: http://goo.gl/6aCUv. The method isVisible() gets called very often (more than once at each request!), so you have to ensure that the calls within isVisible() are cheap. The main point is that the visibility of a component should be controlled by its own and not be controlled by other components. This avoids a wide-spreaded logic over the whole application. Another way you can realize this is to override onConfigure() and set the visibility there. This method gets called once on each request.

Always use models

Always use models! Do not pass raw objects directly to components. Instances of pages and components can exist over several requests. If you use raw objects, you cannot replace them later. An example is an entity which gets loaded at each request within a LoadableDetachableModel. The entity manager creates a new object reference, but the page would keep the obsolete instance. Always pass IModel in the constructor of your components (see listing 9).

public class RegistrationInputPanel extends Panel{
    // Correct: The class Registration gets wrapped by IModel
    public RegistrationInputPanel(String id, IModel<Registration> regModel) {
        // add components
    }
}

Listing 9

The solution in listing 9 could have every implementation in the model. Beginning with the class Model over the PropertyModel and an own implementation of LoadableDetachableModel, which loads and persists the values automatically. The model implementations get very easy to replace. You – as user – just want to know: If I call IModel.getObject(), I will get an object of type Registration. Where the object comes from is the charge of the model implementation and the calling component. For example you can pass the model while instanciating the component. If you avoid using models, you will get the dilemma to modify the component tree sooner or later. Whereby you duplicate states  and thus produce unmaintable code. Additionally you should use models by reason of serialization. Objects which get stored in fields of pages and components get serialized and deserialized on each request. This could be inperformant in some cases.

Do not unpack models within the constructor hierarchy

Avoid unpacking models within the constructor hierarchy, that means do not call IModel.getObject() within the constructor hierarchy. As aforementioned a page instance can exist over several page requests, so you can hold an obsolete and redundant infomation. It is allowed to unpack Wicket Models at events (user actions), that are methods like onUpdate(), onClick() or onSubmit() (see listing 10).

new Form(&quot;register&quot;) {
    public void onSubmit() {
        // correct, unpack model in an event call
        Registration reg = registrationModel.getObject()
        userService.register(reg);
    }
}

Listing 10

An additional possibility to unpack models is through overriding methods like isVisible(), isEnabled() or onBeforeRender().

Pass-trough models to components of extending class

Pass-through models to the parent component. So you ensure, that at the end of every request the method IModel.detach() get called. Those method is responsible for a data cleanup. Another example: you have your own model implemented which persists the data in the detach() method. So the call of detach() is neccessary that your data gets persisted. You can see an exemplary pass-through to the super constructor at listing 11.

public class RegistrationInputPanel extends Panel{
    public RegistrationInputPanel(String id, IModel<Registration> regModel) {
        super(id, regModel)
        // add components
    }
}

Listing 11

Validators must not change any data or models

Validators just should validate. For example: a bank account form which has a BankFormValidator. This validator checks the bank data over a webservice and corrects the bank name. Nobody would expect that a validator modifies information. Such logic has to be located in Form.onSubmit() or in the event logic of a button.

Do not pass components to constructors

Do not pass components or pages to constructors of other components.

// Bad solution
public class SettingsPage extends Page {
    public SettingsPage (IModel<Settings> settingsModel, final Webpage backToPage) {
        Form<?> form = new Form(&quot;form&quot;);
        // add components
        form.add(new SubmitButton(&quot;changeSettings&quot;) {
            public void onSubmit() {
               // do something   
               setResponsePage(backToPage)           
            }
        });
        add(form);
    }
}

Listing 12

See listing 12: The SettingsPage expects in the constructor the page which should be displayed after a successful submit. This solution works, but is very bad style and unflexible. You have to know at the instanciation of SettingsPage where you want to redirect the user. This requires a predetermied order of instanciation. Better it is to order the instanciation after business logic (e.g. the order in the HTML template).  Furthermore you need an unnecessary instance of the next page, which could not be displayed. The solution is the hollywood principle again. For this you create an abstract method or a hook (listing 13).

// Good solution
public class SettingsPage extends Page {
    public SettingsPage (IModel<Settings> settingsModel) {
        Form<?> form = new Form(&quot;form&quot;);
        // add components
        form.add(new SubmitButton(&quot;changeSettings&quot;) {
            public void onSubmit() {
               // do something
               // e.g. persist data   
               onSettingsChanged()   
            }
         });
         add(form);
    }

    // Hook
    protected void onSettingsChanged() {
    }
}

// The usage of the new component
Link<Void> settings = new Link<Void>(&quot;settings&quot;) {
    public void onClick() {       
        setResponsePage(new SettingsPage(settingsModel) {
            @Override
            protected void onSettingsChanged() {
               // Referenz der aktuellen Seite
               setResponsePage(MyPage.this);
            }
        });
    }
}
add(settings);

Listing 13

The solution from listing 13 has more code, but is more flexible and significant. We can see there is an event onSettingsChanged() and this event is called after a successful change. Furthermore there is the possibility to execute more code just than set the back page. For example you can display messages or persist information.

Use the Wicket session only for global data

The Wicket session is your own extension from Wicket's base session. It is fully typed. There is no map structure to store information unlike the servlet session. You just should use Wicket's session for global data. Authentification is a good example for global data. The login and user information is required on nearly each page. For a blog application it would be good to know, whether the user is an author who is allowed to compose blog entries. So you are able to hide or or show links to edit a blog entry. In general you should store the whole authorization logic in Wicket's session, because it is a global thing and you would expect it there. Data of forms and flows which span over several pages should not stored in the session. This data can be passed from one page to the next over the constructor (listing 14). As a consequence of this, the models and data have a defined life cycle over the page flow.

public class MyPage extends WebPage {
    IModel<MyData> myDataModel

    public MyPage(IModel<MyData> myDataModel) {
        this.myDataModel = myDataModel;
        Link<Void> next = new Link<Void>(&quot;next&quot;) {
             public void onClick() {       
                  // do something
                  setResponsePage(new NextPage(myDataModel));
             }
        }
        add(next);
    }
}

Listing 14

As you see in listing 14 you should pass concrete information to the page. All models can be stored in fields, because Wicket pages are userspecific instances and no singletons in contrast to Struts. The big advantage of this approach is, that the data gets automatically cleaned up when user completes or exits the flow early. No manually cleanup anymore! This is quasi a garbage collector for your session.

Do not use factories for components

The factory pattern is an useful pattern, but unsuitable for Wicket components.

public class CmsResource {
   public Label getCmsLabel(String markupId, final String url) {
       IModel<String> fragment = new AbstractReadOnlyModel<String>() {
          @Override
          public String getObject() {
             return loadSomeContent(url);
          }
       };
       Label result = new Label(markupId, fragment);
       result.setRenderBodyOnly(true);
       result.setEscapeModelStrings(false);
       return result;
   }

   public String loadContent(String url) {
      // load some content
   }
}

// create the component within the page:
public class MyPage extends WebPage {
   @SpringBean
   CmsResource cmsResource;
   
   public MyPage() {
      add(cmsFactory.getCmsLabel(&quot;id&quot;, &quot;http://url.to.load.from&quot;));
   }
}

Listing 15

The approach in listing 15 for adding a label from the CmsFactory to a page seems to be initially ok, but brings some disadvantages. There is no possibility anymore to use inheritance. Furthermore there is no possibility to override isVisible() and isEnabled(). The factory could be also a spring service which instanciates the component. A better solution is to create a CmsLabel (listing 16).

public class CmsLabel extends Label {
   @SpringBean
   CmsResource cmsResource;
   public CmsLabel(String id, IModel<String> urlModel) {
      super(id, urlModel);
      IModel<String> fragment = new AbstractReadOnlyModel<String>(){
         @Override
         public String getObject() {
            return cmsResource.loadSomeContent(urlModel.getObject());
         }
      };
      setRenderBodyOnly(true);
      setEscapeModelStrings(false);
   }
}

// create the component within a page
public class MyPage extends WebPage {
   public MyPage() {
      add(new CmsLabel(&quot;id&quot;, Model.of(&quot;http://url.to.load.from&quot;)));
   }
}

Listing 16

The label from listing 16 is clearly encapsulated in a component without using a factory. Now you can easily create inline implementations and override isVisible() or other stuff. Now someone could say "I need a factory to initialize some values in the component, e.g. a spring service.". For this you can create a implementation of IComponentInstantiationListener. This listener gets called on the super-constructor of every component. The most popular implementation of this interface is the SpringComponentInjector which injects spring beans in components when the fields are annotated with @SpringBean. You can easliy write and add your own implementation of IComponentInstantiationListener. So there is no reason using a factory anymore. More information about the instanciation listener is located in Wicket's javadoc.

Every page and component expects a test

Every page and component should have a test. The simplest test just renders the component and validates its technical correctness. For example a child component should have a matching wicket id in the markup. If the wicket id is not correctly bound – through a typo or it was just forgotten – the test will fail. An advanced test could test a form, where a backend call gets executed and validated over a mock. So you can validate your component's behaviour. This is a simple way to detect and fix technical and business logic bugs while the build process. For the test driven development approach, you can use wicket quite well. Lets say you have a page so you can validate the correctness of the page by running the unit test. If you run the unit test which fails and shows a message that the wicket id not bound, so you will avoid an unneccessary server startup, because a server startup takes longer than running a unit test. This reduces the development turnaround. A disadvantage is the difficult testing possibility of AJAX components. However the testing possibilites of Wicket are much more than in other web frameworks.

Avoid interactions with other servlet filters

Try to get as long as possible within the Wicket world. Avoid the usage of other servlet filters. For this you can use the RequestCycle and override the methods onBeginRequest() and onEndRequest(). You can apply the same to the HttpSession. The equivalent in Wicket is the WebSession. Just extend the WebSession and override the newSession()-method from the Application class. There are very few reasons to access the servlet interfaces. An example could be to read an external cookie to authentificate a user. The parts should encapsulated well and minimized. For this example you could put the handling in the Wicket session, because this is an authentification.

Cut small classes and methods

Avoid monolithic classes. Often I have seen that developers put the whole stuff into constructors. These classes are getting very unclear and chaotic, because you use inline implementations over serveral levels. It is recommended to group logical units and extract methods with a correct business naming. This enhances the clarity and the understandability of the business aspect. When a developer navigates to a component, he is not interested in the technical aspect at first, however he just need the business aspect. To retrieve technical information of a component you can navigate to the method implementation. In case of doubt you should consider to extract seperate components. Smaller components increase the chance of reuse and make the testability easier. Listing 17 shows an example of a possible structuring.

public class BlogEditPage extends WebPage {
    private IModel<Blog> blogModel;

    public BlogEditPage(IModel<Blog> blogModel) {
        super(new PageParameters());
        this.blogModel = blogModel;
        add(createBlogEditForm());
    }

    private Form<Blog> createBlogEditForm() {
        Form<Blog> form = newBlogEditForm();
        form.add(createHeadlineField());
        form.add(createContentField());
        form.add(createTagField());
        form.add(createViewRightPanel());
        form.add(createCommentRightPanel());
        form.setOutputMarkupId(true);
        return form;
    }
    
    // more methods here
}

Listing 17

The argument "Bad documentation"

Often I have heard that Wicket has a bad documentation. This argument is just particular correct. There are a lot of code samples and snippets which can be used as code templates. Furthermore there is a big community that answers complex questions in shortest time. In Wicket it is very hard to document everything, because nearly everything is extensible and replaceable. If a component is not completely suitable, you will extend or replace it. The work with Wicket is a permanent navigating through the code. For example the validators. How can I find all navigators that exists? Open the interface IValidator (Eclipse Ctrl + Shift + T) and then open the type hierachy (Crtl + T). Now we are seeing all the validators existing in Wicket and our project.

Type Hierachy

Conclusion

These advices should help you to write better and more maintainable code in Wicket. All described methodologies were already proved in a few Wicket projects. If you follow these advices, your Wicket projects will get future-proof and successful hopefully.

Links:
1. http://wicket.apache.org/ (Apache Wicket)
2. http://wicketstuff.org/wicket14/ (Wicket Examples)
3. http://en.wikipedia.org/wiki/Hollywood_Principle

Thanks to Daniel Bartl for the correction.

Apache Wicket – Best practices

Apache Wicket erfreut sich immer steigender Popularität und findet mehr und mehr Einsatz in Projekten. Dank der Mächtigkeit von Wicket lassen sich viele Features einfach und schnell realisieren. Für die Umsetzung dieser Features gibt es viele Wege. Dieser Artikel bietet einige Kochrezepte zum richtigen, effizienten und nachhaltigen Umgang mit Apache Wicket.

Dieser Artikel richtet sich an Entwickler, die bereits erste Erfahrungen mit Apache Wicket gesammelt haben. Entwickler, die in Wicket-Welt einsteigen tun sich oftmals schwer, weil sie Entwicklungsmethoden aus der JSF- oder Struts-Welt adaptieren. Diese Frameworks setzen vorrangig auf prozedurale Programmierung. Wicket hingegen setzt massiv auf Objektorientierung. Also vergessen Sie die Struts und JSF-Patterns, sonst werden Sie nicht lange Freude an Wicket haben.

Continue reading

Tagged , ,

Java 4-ever

One of the most compelling dramas of our time ;)

Follow

Get every new post delivered to your Inbox.