Archive

Archive for July, 2009

WicketQuickstart archetype is not enough

July 26, 2009 2 comments

Wicket team gave us this maven archetype called wicket-archetype-quickstart, which generates simple wicket webapplication. You simply type in your console

mvn archetype:create
-DarchetypeGroupId=org.apache.wicket
-DarchetypeArtifactId=wicket-archetype-quickstart
-DarchetypeVersion=1.3.6
-DgroupId=com.mycompany
-DartifactId=myproject

and from now on you can explore the vast world of wicket development.  You get very simple maven project, with wicket Application object, WelcomePage (hello world type) and simple test that shows usage of WicketTester.

If you starting your adventure with Wicket, this should suffice. But as you get quickly through the wicket basics, you will quickly realize that wicket-archetype-quickstart is simply not enough. Eventually  you will finally decide to write your very first webapplication in Wicket and that will be the moment where wicket-archetype-quickstart will shows its weakness.

First of all, wicket-archetype-quickstart is simply webapplication project. There is no business layer, no persistence layer and simply no connection with some backend technology (for example Spring). Of course Wicket is only web framework, however nowadays I can’t simply imagine webapplication without some backend technology, so chances are, you will need one.

Wicket integrates with Spring rather smoothly. When configured, you will get out of the box:

  1. Dependency Injection
  2. Integration with JPA
  3. Open Session In View pattern [1]
  4. Transactional tests – one of advantages is fact that all action you made in tests on database are rolledback at the end of each test (regardless of whether test passed, failed or thrown an exception).

However to makes things work, you need proper configuration. Even for person experienced with Spring this task might be troublesome. Take for example dependency injection. You can inject dependencies that given controller needs, as you would do in any other Spring application. However in Wicket all controller fields are serialized with each request and they travel in cache with user session. If you would use @Autowired annotation, you could eventually serialized half of your application context.

Of course  Wicket team created @SpringBean annotation, that acts like @Autowired, but is free of just described  problems. Yet this proves that integrating Spring with Wicket might be a problem, even for someone exprienced with Spring. Not to mention a fact, that creating such integration (repetitively creating configurations for each new project) would be boring task, that would quickly end up in dull  copy-past from one project to another. I would really like to have some archetype that could do all this repetitive and boring actions for me.

Secondly, when creating wicket (+Spring+JPA) application from archetype, I would like to have it already grouped and organized by layers. One layer for domain area, one for business logic (service) area and one for the web part. Ideally I would have some examples that show how to use it. For instance an example that shows how to create dao object , use it as dependency in service object and finally use this service object in controller of my webapplication. This way I would not only have proper structure for my application, but also I would have examples of how to use it.

I belive that examples are very powerful. Whenever I try to use new technology I always go to the examples, try to run them and then I start extending them, while learning new technology at the same time. If examples are good, chances are I will learn how to use the technology in a proper way. In Wicket (+Spring+JPA) application it is easy for me to imagine a junior developer using DAO object in controller area. This is what I would call a bad programming, but if there were no given examples to show  good programming, I could not blame him.

Thirdly, Wicket gives robust security support, for both authorization and authentication. However you won’t find usage of it in wicket-archetype-quickstart. Since I’m almost always securing my webapplication and doing it is a simple copy-past from my older projects, why not put it in an archetype?

Last but not least are Wicket tests. They are powerful, but after few months of development in Wicket I believe that they need some conventions, otherwise  there might be a moment, when moving some component in markup tree from one place to another, will end up in failing 260 tests (paths will not match). You might find yourself in situation where you have to fix paths in 260 JUnit tests – and that is really not what you would like to be doing.

However there are ways and conventions that help dealing with this problem (where making this 260 tests passed is simply a matter of changes in 3 lines of code), however again examples are needed to show the usage of the convention.

There are few other things I would like to have in my Wicket Application archetype. Useage of CSS file and resourses for example is something that you will see in almost every webapplication. Configuration is simply matter of few lines in your code, but since it is repetitive, why not have it created automatically?

Well, I’m pretty curious what you think about it. Especially people that use Wicket. Do you also believe that wicket-archetype-quickstart is not enough? Currently I’m developing WicketCool project, one of its features will be extended maven archetype, that will try to solve described problems of wicket-archetype-quckstart. Can you think of any other things, that you would like to see in such archetype? What would enhanced your development by automating repetitive, configuration work? Let me know: leave a comment or contact me directly.

More information about WicketCool project soon to come. I can now tell you that the tool reached version 0.6.0-SNAPSHOT,  it can be downloaded from the project page (you no longer need to build by yourself) and  that I am still extending its functionality. However because I’m doing it by myself, tool develops rather slowly. Any volunteers happy to help, are more then welcome!.

[1]. If you don’t know what Open Session In View pattern is, then I strongly encourage you to google it. To tell the long story short, OSIV pattern helps you to deal with lazy initialized entities, whose values are somehow show to the user. EntityManager is closed after page response is rendered (not before), thus you don’t get LoadLazyException when reaching for entites in the controller.

Categories: Wicket Tags: ,

Back from Javarsovia2009

July 7, 2009 4 comments

Two weeks before Javarsovia were crazy as hell. Not only did I have to move out completely from my apartment (because of its total redecoration and all the dirty and messy work that are triggered because of that), but also make final preparations for my wedding to come (got only 2 months of freedom left 🙂 ), stay at work for 10-11 hours per day (deployment and small misunderstandings with the client) and in the meantime prepare for Javarsovia event. So to all people I was consistently ignoring and not replying emails and/or comments, I apologies, but I was busy. Really, really busy. I will do my best, not to make it happen again.

Back to Javarsovia. Despite the fact that I was actually finishing the presentation at 3 a.m. on Saturday, from what I can read on the web [1], I can count my presentation as a success. So I’m glad you all like it. To all the people who wanted to hear a little bit more then just basics – I’m sorry, it was planned, but there was simply no time (one hour is not enough:)).

Slides will be soon published on Javarsovia page, but I will also put them here on my blog, after translating them into English.

Few people asked me to finally publish THTemplate I presented. It is my pleasure to inform you that the template code is already on the web! I will make separate post about it, with more details, but for all eager who want to try it, here are few things you should know:

  • project finally got a name: Wicket Cool 🙂 (thus THTemplate is obsolete)
  • template I told about during presentation can be accessed by simply running

svn checkout http://wicketcool.googlecode.com/svn/trunk/wctemplate wicketcool-read-only

  • to create archetype simply do this:

svn checkout http://wicketcool.googlecode.com/svn/trunk/wctemplate wicketcool-read-only
cd wctemplate
mvn archetype:create-from-project -Darchetype.filteredExtensions=java

  • now to create your very own project, based on that arechtype, run below in your command line

mvn archetype:generate -Darchetype=wctemplate-archetype -DarchetypeCatalog=local -DgroupId=some-group-id-DartifactId=some-artefact-id -Dversion=some-version

And that should be it. You are ready to go. More about Wicket Cool project soon, but right now you can test drive the project template.

Out.

[1] Note that all of them are in Polish:

http://www.jakubiak.eu/2009/07/javarsowia-a-i-czy-i.html

http://koziolekweb.pl/2009/07/05/javarsovia-2009-juz-po/

http://pacykarz.blogspot.com/2009/07/sen-o-warszawie-javarsovia-2009.html

http://luksza.org/2009/07/06/javarsovia-09/

http://codehardgopro.blogspot.com/2009/07/javarsovia-2009-wrazenia.html

http://blog.kedziorski.pl/

http://marekklis.blogspot.com/

Categories: Presentations