SlideShare a Scribd company logo
Wicket in Action
Martijn Dashorst
Øredev 2008
Malmö
Martijn Dashorst
Martijn Dashorst
• Employee @ Topicus
• VP Apache Wicket
• Committer
• Apache Member
• Author Wicket in Action
4 Parts
I. Getting started with Wicket
II. Ingredients for your Wicket applications
III. Preparing for the real world
IV. The future of Wicket
Getting started with
Wicket
Part I
What is Wicket?
Wicket In Action - oredev2008
Wicket In Action - oredev2008
Wicket In Action - oredev2008
Wicket In Action - oredev2008
Wicket In Action - oredev2008
What is Wicket?
Apache Wicket is a component oriented
open source web application framework
using just Java and HTML.
Apache Wicket is a component oriented
open source web application framework
using just Java and HTML.
(XML not included)
What does that mean?
“Writing a Wicket app is rather more like writing
an event-based desktop application than a
web application.”
- Michael Porter (LShift)
Wicket In Action - oredev2008
Top 5 features
Top 5 features
1. Just Java and HTML™
Top 5 features
1. Just Java and HTML™
2. No XML configuration
Top 5 features
1. Just Java and HTML™
2. No XML configuration
3. Object Oriented Programming for the Web
Top 5 features
1. Just Java and HTML™
2. No XML configuration
3. Object Oriented Programming for the Web
4. Easy custom component creation
Top 5 features
1. Just Java and HTML™
2. No XML configuration
3. Object Oriented Programming for the Web
4. Easy custom component creation
5. Community
Just Java™
Just Java™
• Components are objects (just use extends)
• No annotation hunting
• Not managed by the framework (just use new)
Just Java™
public class EditPersonLink extends Link {
private final Person person;
public EditPersonLink(String id, Person person) {
super(id);
this.person = person;
}
public void onClick() {
setResponsePage(new EditPersonPage(person));
}
}
Just Java™
public class EditPersonLink extends Link {
private final Person person;
public EditPersonLink(String id, Person person) {
super(id);
this.person = person;
}
public void onClick() {
setResponsePage(new EditPersonPage(person));
}
}
Just Java™
public class EditPersonLink extends Link {
private final Person person;
public EditPersonLink(String id, Person person) {
super(id);
this.person = person;
}
public void onClick() {
setResponsePage(new EditPersonPage(person));
}
}
Just HTML™
Just HTML™
• Designer friendly
Just HTML™
• Designer friendly
• No new language to learn
Just HTML™
• Designer friendly
• No new language to learn
• No serverside scripting in markup
Just HTML™
• Designer friendly
• No new language to learn
• No serverside scripting in markup
• Developers won’t $#$#% up your design
Just HTML™
• Designer friendly
• No new language to learn
• No serverside scripting in markup
• Developers won’t $#$#% up your design
• Designers won’t $*&#$# up your code
Just HTML™
<table>
<tr>
<c:forEach var="item" items="${sessionScope.list}">
<td>
<c:out value="item.name" />
</td>
</c:forEach>
</tr>
</table>
Just HTML™
<table>
<tr>
<c:forEach var="item" items="${sessionScope.list}">
<td>
<c:out value="item.name" />
</td>
</c:forEach>
</tr>
</table>
Just HTML™
<h:dataTable value="#{list}" var="item">
<h:column>
<h:outputText value="#{item.name}"/>
</h:column>
</h:dataTable>
Just HTML™
<h:dataTable value="#{list}" var="item">
<h:column>
<h:outputText value="#{item.name}"/>
</h:column>
</h:dataTable>
Just HTML™
<table>
<tr wicket:id="list">
<td wicket:id="firstname">John</td>
<td wicket:id="lastname">Doe</td>
</tr>
</table>
♥designers developers
XML?
XML?
No XML
No XML
• Page navigation is done in Java:
setResponsePage(new MyPage());
No XML
• Page navigation is done in Java:
setResponsePage(new MyPage());
• Configuration is done in Java:
protected void init() {
getDebugSettings()
.setAjaxDebugModeEnabled(true);
}
Object Oriented Programming
for the web
Wicket is the first truly modern
framework [...] to fully realize
the promise of object oriented
development.
“
”—James McLaughlin
Embrace encapsulation
public class PersonLink extends Link {
private Person person;
public PersonLink(String id, Person p) {
this.person = p;
}
public void onClick() {
person.someOperation();
}
}
Embrace encapsulation
public class PersonLink extends Link {
private Person person;
public PersonLink(String id, Person p) {
this.person = p;
}
public void onClick() {
person.someOperation();
}
}
Use the right abstractions
public abstract class PersonEditPanel extends Panel {
public PersonEditPanel(String id, Person p) {
add(new Button("save") {
public void onSubmit() {
onSave(person);
}
});
add(new Button("delete") { ... });
}
protected abstract void onSave(Person p);
protected abstract void onDelete(Person p);
}
Use the right abstractions
public abstract class PersonEditPanel extends Panel {
public PersonEditPanel(String id, Person p) {
add(new Button("save") {
public void onSubmit() {
onSave(person);
}
});
add(new Button("delete") { ... });
}
protected abstract void onSave(Person p);
protected abstract void onDelete(Person p);
}
Easy custom
component creation
just use extends
public class PersonLink extends Link { ... }
public class PersonEditPanel extends Panel { ... }
public class NationalitySelect extends
DropDownChoice { ... }
just use extends
Community
The Wicket community is by far the most
vibrant and helpful open source
community that I have been a part of.
—JeremyThomerson
“
”
Community
• Part of The Apache Software Foundation
“not simply a group of projects sharing a
server, but rather a community of
developers and users.”
Community
• Part of The Apache Software Foundation
• User list: >800 subscribers, 59 messages/day
• Meetups around the world
• ##wicket on irc.freenode.net
Community Projects
• Wicket Stuff
jquery, dojo, scriptaculous, google maps,
hibernate, minis, prototip, etc.
• databinder.net
• Wicket Web Beans
• Tons of other projects at googlecode,
sourceforge, etc.
http://cafepress.com/apachewicket
Some Examples
Hello,World!
Hello,World!
Hello,World!
<h1>Hello,World!</h1>
Hello,World!
<h1>[replaced text]</h1>
Hello,World!
<h1 wicket:id="msg">[replaced text]</h1>
Hello,World!
<h1 wicket:id="msg">[replaced text]</h1>
+
add(new Label("msg", "Hello,World!"))
Hello,World!
<h1 wicket:id="msg">[replaced text]</h1>
+
add(new Label("msg", "Hello,World!"))
=
<h1>Hello, World!</h1>
Hello,World!
<html>
<head>
<title>Home page</title>
</head>
<body>
<h1 wicket:id="msg">Gets replaced</h1>
</body>
</html>
Hello,World!
package com.example;
import org.apache.wicket.markup.html.WebPage;
import org.apache.wicket.markup.html.basic.Label;
public class HomePage extends WebPage {
public HomePage() {
add(new Label("msg", "Hello,World!"));
}
}
Click counter
Click counter
This link has been clicked 123 times.
Click counter
This <a href="#">link</a> has been clicked
123 times.
This link has been clicked 123 times.
Click counter
This <a href="#">link</a> has been clicked
<span>123</span> times.
This link has been clicked 123 times.
Click counter
This <a wicket:id="link" href="#">link</a>
has been clicked <span>123</span> times.
This link has been clicked 123 times.
Click counter
This <a wicket:id="link" href="#">link</a> has
been clicked <span wicket:id="clicks">123</
span> times.
This link has been clicked 123 times.
Click counter
public class ClickCounter extends WebPage {
}
Click counter
public class ClickCounter extends WebPage {
public ClickCounter() {
}
}
Click counter
public class ClickCounter extends WebPage {
private int clicks = 0;
public ClickCounter() {
}
}
Click counter
public class ClickCounter extends WebPage {
private int clicks = 0;
public ClickCounter() {
add(new Link("link") {
protected void onClick() {
clicks++;
}
});
}
}
Click counter
public class ClickCounter extends WebPage {
private int clicks = 0;
public ClickCounter() {
add(new Link("link") { ... });
add(new Label("clicks",
new PropertyModel(this, "clicks")));
}
}
Ajax Click counter
Ajax Click counter
public class ClickCounter extends WebPage {
private int clicks = 0;
public ClickCounter() {
add(new Link("link") { ... });
add(new Label("clicks",
new PropertyModel(this, "clicks")));
}
}
Ajax Click counter
public ClickCounter() {
final Label label = new Label(...);
add(label);
label.setOutputMarkupId(true)
add(new Link("link") {
public void onClick() {
clicks++;
}
});
}
Ajax Click counter
public ClickCounter() {
final Label label = new Label(...);
add(label);
label.setOutputMarkupId(true)
add(new AjaxLink("link") {
public void onClick(AjaxRequestTarget t) {
clicks++;
t.addComponent(label);
}
});
}
The architecture of
Wicket
Handling requests
RequestSessionApplication
cheese store
Mary
John
search 'leerdammer'
browse 'goat cheeses'
place order
Handling requests
decode
request
determine
target
process
events
respond clean up
Handling requests
decode
request
determine
target
process
events
respond
parameters
page
component
version
interface
clean up
Handling requests
decode
request
determine
target
process
events
respond
event listener
ajax listener
page
resource
...
clean up
Handling requests
decode
request
determine
target
process
events
respond
onClick
onSubmit
...
clean up
Handling requests
decode
request
determine
target
process
events
respond
render page
components
resource
redirect
clean up
Handling requests
decode
request
determine
target
process
events
respond clean up
detach
store page
Handling requests
• Access to page is single threaded
• No multithreading issues in UI code
• Session is not single threaded
Ingredients for your
Wicket application
Part II
• Components
• Behaviors
• Models
• Page Composition
4 ingredients
Wicket Components
Components
• Label
• Link
• AjaxLink
• ListView
• Form
• TextField
• DropDownChoice
• Tree
• DataTable
• DatePicker
• CustomerLink
• NationalityDropDownChoice
• ShoppingCartPanel
Component
•Can handle events
(onClick, onSubmit, ...)
•Writes its markup to
the response
•May or may not have
a Model
Component
M
arkup
M
odel
Component
• Component has identifier (wicket:id)
new Label("msg", "Hello,World!");
• Markup has same identifier (wicket:id)
<h1 wicket:id="msg">Gets replaced</h1>
Component
• Components can be nested inside one another
<a href="#" wicket:id="link">
<span wicket:id="label">replaced</span>
</a>
Link link = new Link("link") {...};
add(link);
link.add(new Label("label", "Some text"));
Component
• Components can be nested inside one another
<a href="#" wicket:id="link">
<span wicket:id="label">replaced</span>
</a>
Link link = new Link("link") {...};
add(link);
link.add(new Label("label", "Some text"));
Component
• Components can be nested inside one another
<a href="#" wicket:id="link">
<span wicket:id="label">replaced</span>
</a>
Link link = new Link("link") {...};
add(link);
link.add(new Label("label", "Some text"));
Component
• Components can receive events
public class EditPersonForm extends Form {
public EditPersonForm(String id, Person p) {
super(id, new Model(p));
}
public void onSubmit() {
person.save();
setResponsePage(new ListPage());
}
}
Component
Component
• Can manipulate markup
Component
• Can manipulate markup
• Directly
protected void onComponentTag(ComponentTag tag) {
tag.put("class", "error");
}
<td class="error">some text</td>
Component
• Can manipulate markup
• Directly
protected void onComponentTag(ComponentTag tag) {
tag.put("class", "error");
}
<td class="error">some text</td>
• With AttributeModifier
label.add(new SimpleAttributeModifier("class", "error"));
<td class="error">some text</td>
Behaviors
Behaviors are decorators
for components
Behaviors
• Manipulate component tags
• Add JavaScript to components
• Add Ajax behavior to components
Adding JavaScript to a
component
link.add(new AbstractBehavior() {
public void onComponentTag(Component component,
ComponentTag tag) {
tag.put("onclick",
"return confirm('Are you sure?');");
}
});
<a href="..." onclick="return confirm('Are you sure?');">
Play thermonuclear war
</a>
Ajax behaviors
Create a Label that changes
color with a click using Ajax
Create a Label that changes
color with a click using Ajax
Create a Label that changes
color with a click using Ajax
Create a Label that changes
color with a click using Ajax
Label label = new Label("label", "Click me");
Label label = new Label("label", "Click me");
label.setOutputMarkupId(true);
Label label = new Label("label", "Click me");
label.setOutputMarkupId(true);
label.add(new AjaxEventBehavior("onclick") {
});
Label label = new Label("label", "Click me");
label.setOutputMarkupId(true);
label.add(new AjaxEventBehavior("onclick") {
private boolean isRed = false;
protected void onComponentTag(...) {
super.onComponentTag(component, tag);
if(isRed) { tag.put("style", "color:red"); }
}
});
Label label = new Label("label", "Click me");
label.setOutputMarkupId(true);
label.add(new AjaxEventBehavior("onclick") {
private boolean isRed = false;
protected void onEvent(AjaxRequestTarget target) {
isRed = !isRed;
}
protected void onComponentTag(...) {
super.onComponentTag(component, tag);
if(isRed) { tag.put("style", "color:red"); }
}
});
Label label = new Label("label", "Click me");
label.setOutputMarkupId(true);
label.add(new AjaxEventBehavior("onclick") {
private boolean isRed = false;
protected void onEvent(AjaxRequestTarget target) {
isRed = !isRed;
target.addComponent(getComponent());
}
protected void onComponentTag(...) {
super.onComponentTag(component, tag);
if(isRed) { tag.put("style", "color:red"); }
}
});
Ajax behaviors
Ajax behaviors
• Can re-render components
target.addComponent(...);
Ajax behaviors
• Can re-render components
target.addComponent(...);
• Can execute JavaScript
target.appendJavaScript("$('foo').explode();");
Ajax behaviors
• Can re-render components
target.addComponent(...);
• Can execute JavaScript
target.appendJavaScript("$('foo').explode();");
• Can throttle the client side events
behavior.setThrottleDelay(Duration.seconds(10));
Ajax behaviors
• Can re-render components
target.addComponent(...);
• Can execute JavaScript
target.appendJavaScript("$('foo').explode();");
• Can throttle the client side events
behavior.setThrottleDelay(Duration.seconds(10));
• Can add new header related resources
JavaScript, stylesheets, etc.
Ajax Components
• Links, Forms, Buttons, CheckBoxes
• Ajax fallback components
• Indicating components
• Tree, DataTable, PagingNavigator
Understanding models
Component
M
arkup
M
odel
Wicket models allow
components to retrieve and
store data.
Component
M
arkup
M
odel
Models
Controller
View
TextField
Locator
gets
Model
Cheese
cheese.age
gets
sets
Name Gouda
Age 3 months
OK
Cheese Store
receives
renders
sets
IModel
Simple Model usage
new Label("name", customer.getName())
new Label("street",
customer.getAddress().getStreet())
newTextField("username", new Model("<username>"))
What’s wrong with this?
new Label("street",
customer.getAddress().getStreet())
What’s wrong with this?
new Label("street",
customer.getAddress().getStreet())
• Label isn’t notified of street/address/
customer changes
What’s wrong with this?
new Label("street",
customer.getAddress().getStreet())
• Label isn’t notified of street/address/
customer changes
• NullPointerException: customer, address
could be null
PropertyModel usage
new Label("street",
new PropertyModel(customer, "address.street"))
PropertyModel usage
new Label("street",
new PropertyModel(customer, "address.street"))
setModel(new CompoundPropertyModel(customer));
add(new Label("address.street"));
add(new Label("address.zipcode"));
add(new Label("address.city"));
PropertyModel
+null safe
+dynamic
–not rename safe
Page composition:
creating a consistent layout
Wicket In Action - oredev2008
Wicket In Action - oredev2008
BasePage
BasePage
PageWithMenu
BasePage
PageWithMenu
VivamusPage BlanditPage PretiumPage
Java inheritance
public class BasePage extends WebPage {
public BasePage() {
add(new HeaderPanel("header"));
add(new FooterPanel("footer"));
}
}
Java inheritance
public class PageWithMenu extends BasePage {
public PageWithMenu() {
add(new Menu("menu"));
}
}
Java inheritance
public classVivamusPage extends PageWithMenu {
publicVivamusPage() {
add(new Label("vivamus", "..."));
add(new Link("link"){...});
}
}
Markup inheritance
<html>
<body>
<div id="bd">
<div wicket:id="header"></div>
<wicket:child />
<div wicket:id="footer"></div>
</div>
</body>
</html>
Markup inheritance
<html>
<body>
<div id="bd">
<div wicket:id="header"></div>
<wicket:child />
<div wicket:id="footer"></div>
</div>
</body>
</html>
Markup inheritance
<wicket:extend>
<div wicket:id="menu"></div>
<div id="main">
<wicket:child />
</div>
</wicket:extend>
Markup inheritance
<wicket:extend>
<div wicket:id="menu"></div>
<div id="main">
<wicket:child />
</div>
</wicket:extend>
Markup inheritance
<wicket:extend>
<table>
<tr>
<td wicket:id="name"></td>
<........>
</tr>
</table
</wicket:extend>
Markup inheritance
• Inherit markup from child pages
• Includes <wicket:head> sections
• Works for Panels too
• Very easy to create consistent layout
Preparing for the real
world
Part III
Integrate with
Spring & Guice
Getting at Spring
public class CheesesPage extends WebPage {
private CheesesDao dao;
public CheesesPage() {
List<Cheese> = dao.getCheeses();
...
}
}
Getting at Spring
public class CheesesPage extends WebPage {
@SpringBean
private CheesesDao dao;
public CheesesPage() {
List<Cheese> = dao.getCheeses();
...
}
}
Make Application Spring
aware
protected void init() {
addComponentInstantiationListener(
new SpringComponentInjector(this));
}
Make Wicket Guice aware
protected void init() {
addComponentInstantiationListener(
new GuiceComponentInjector(this,
getModule()));
}
private Module getModule() {
return new Module() {
public void configure(Binder binder) {
binder.bind(CheesesDao.class)
.to(CheesesDaoImpl.class);
}};
Getting at Guice
public class CheesesPage extends WebPage {
private CheesesDao dao;
public CheesesPage() {
List<Cheese> = dao.getCheeses();
...
}
}
Getting at Guice
public class CheesesPage extends WebPage {
@Inject
private CheesesDao dao;
public CheesesPage() {
List<Cheese> = dao.getCheeses();
...
}
}
Putting your application
into production
Test your Wicket
application
WicketTester
• Test components directly, or their markup
• Runs tests without starting server
• Ajax testing (server side)
• Runs in IDE, ant, maven builds
• Achieves high code coverage
HelloWorld test
@Test
public void labelContainsHelloWorld() {
}
HelloWorld test
@Test
public void labelContainsHelloWorld() {
WicketTester tester =
new WicketTester();
}
HelloWorld test
@Test
public void labelContainsHelloWorld() {
WicketTester tester = new WicketTester();
tester.startPage(HelloWorld.class);
}
HelloWorld test
@Test
public void labelContainsHelloWorld() {
WicketTester tester = new WicketTester();
tester.startPage(HelloWorld.class);
tester.assertLabel("message",
"Hello, World!");
}
Link test
@Test
public void countingLinkClickTest() {
}
Link test
@Test
public void countingLinkClickTest() {
WicketTester tester =
new WicketTester();
}
Link test
@Test
public void countingLinkClickTest() {
WicketTester tester = new WicketTester();
tester.startPage(LinkCounter.class);
}
Link test
@Test
public void countingLinkClickTest() {
WicketTester tester = new WicketTester();
tester.startPage(LinkCounter.class);
tester.assertModelValue("label", 0);
}
Link test
@Test
public void countingLinkClickTest() {
WicketTester tester = new WicketTester();
tester.startPage(LinkCounter.class);
tester.assertModelValue("label", 0);
tester.clickLink("link");
}
Link test
@Test
public void countingLinkClickTest() {
WicketTester tester = new WicketTester();
tester.startPage(LinkCounter.class);
tester.assertModelValue("label", 0);
tester.clickLink("link");
tester.assertModelValue("label", 1);
}
Navigation test
@Test
public void navigateToSecondPage() {
WicketTester tester = new WicketTester();
tester.startPage(new FirstPage());
tester.clickLink("link");
tester.assertRenderedPage(SecondPage.class);
}
Navigation test
@Test
public void navigateToSecondPage() {
WicketTester tester = new WicketTester();
tester.startPage(new FirstPage());
tester.clickLink("link");
tester.assertRenderedPage(
SecondPage.class);
}
URL Makeover
UGLY url
http://cheesr.com/shop?wicket:bookmarkablePage=
%3Acom.cheesr.shop.CheeseDetailsPage&cheese=edam
Prettier urls
http://cheesr.com/cheeses?cheese=edam
http://cheesr.com/cheeses/cheese/edam
http://cheesr.com/cheeses/edam
Mount pages for prettiness
mount(new IndexedParamUrlCodingStrategy("cheeses",
CheeseDetailsPage.class));
http://cheesr.com/cheeses/edam
Configure for
production
2 configuration modes
1. Development
maximize developer happiness
2. Deployment
maximize end-user happiness
Development mode
• exceptional error pages
• dynamic markup reloading
• no caching
• no javascript/css optimizations
• discover mistakes early (serialization,
missing components, ...)
• Wicket debugger visible
Production mode
• Cache markup resources
• No checks
• Don’t display stack traces to users
• Minimize/compress JavaScript
• Don’t generate wicket tags
• Wicket debugger not visible
Default setting
INFO - WebApplication - [WicketInActionApplication] Started Wicket
version 1.3.0 in
development mode
********************************************************************
*** WARNING: Wicket is running in DEVELOPMENT mode. ***
*** ^^^^^^^^^^^ ***
*** Do NOT deploy to your live server(s) without changing this. ***
*** See Application#getConfigurationType() for more information. ***
********************************************************************
Go to production
• System property:
java -Dwicket.configuration=deployment
• Servlet/filter initialization parameter (web.xml)
• Context initialization parameter (web.xml)
<init-param>
<param-name>configuration</param-name>
<param-value>deployment</param-value>
</init-param>
The future of Wicket
Part IV
• Java 5 all the way
CustomerLink(String id, IModel model)
Wicket 1.4
• Java 5 all the way
CustomerLink(String id, IModel<Customer>)
Wicket 1.4
• Java 5 all the way
CustomerLink(String id, IModel<Customer>)
• Mostly code compatible with Wicket 1.3
Wicket 1.4
• Java 5 all the way
CustomerLink(String id, IModel<Customer>)
• Mostly code compatible with Wicket 1.3
• Improved OSGi awareness
Wicket 1.4
Wicket 1.5
• New Ajax implementation
• Improved unit test support
• Simplified resources
• Improved multi-window support
• and much more...
More information
• http://wicket.apache.org
• blog: http://wicketinaction.com
• irc: ##wicket @ irc.freenode.net
• User list: users@wicket.apache.org
One more thing...
Wicket In Action - oredev2008
Wicket In Action - oredev2008
Wicket in Action
• Martijn Dashorst and
Eelco Hillenius
• August, 2008 | 392 pages
• ISBN: 1932394982
• $44.99 Softbound print
book - (includes free
ebook)
• $27.50 PDF ebook
Wicket In Action - oredev2008
Questions?
Ask!
the first 6 persons asking a question will receive a
free E-Book of Wicket in Action
Thank you
for your attention...

More Related Content

PPT
Wicket Introduction
PDF
Google Developer DAy 2010 Japan: HTML5 についての最新情報 (マイク スミス)
PDF
Google Developer Day 2010 Japan: 新 SocialWeb: 全てはオープンスタンダードの元に (ティモシー ジョーダン)
PDF
Keep your Wicket application in production
PDF
How to create a real time chat application using socket.io, golang, and vue js-
PDF
HTML 5 - Overview
PPTX
Local SQLite Database with Node for beginners
PPTX
A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to...
Wicket Introduction
Google Developer DAy 2010 Japan: HTML5 についての最新情報 (マイク スミス)
Google Developer Day 2010 Japan: 新 SocialWeb: 全てはオープンスタンダードの元に (ティモシー ジョーダン)
Keep your Wicket application in production
How to create a real time chat application using socket.io, golang, and vue js-
HTML 5 - Overview
Local SQLite Database with Node for beginners
A Microsoft Silverlight User Group Starter Kit Made Available for Everyone to...

Similar to Wicket In Action - oredev2008 (20)

PDF
Wicket 10 years and beyond
PDF
Apache Wicket Web Framework
PDF
Wicket Intro
PPTX
Apache Wicket
PDF
Apache Wicket: 10 jaar en verder - Martijn Dashorst
ODP
Getting Started with Wicket
KEY
Integrating Wicket with Java EE 6
PDF
The State of Wicket
PDF
Ikenna Okpala: London Java Community: Wicket and Scala - 27/07/2010.
PDF
Short Lightening Talk
KEY
Architecting Applications Using Apache Wicket Java2 Days 2009
PDF
Apache Wicket and Java EE sitting in a tree
PDF
Wicket Deliver Your Webapp On Time
PDF
DOSUG Wicket 101
PDF
Wicket Web Framework 101
PDF
Wicket KT part 2
ODP
Wicket Next (1.4/1.5)
PPT
Component Framework Primer for JSF Users
KEY
Wicket 2010
PDF
How Scala, Wicket, and Java EE Can Improve Web Development
Wicket 10 years and beyond
Apache Wicket Web Framework
Wicket Intro
Apache Wicket
Apache Wicket: 10 jaar en verder - Martijn Dashorst
Getting Started with Wicket
Integrating Wicket with Java EE 6
The State of Wicket
Ikenna Okpala: London Java Community: Wicket and Scala - 27/07/2010.
Short Lightening Talk
Architecting Applications Using Apache Wicket Java2 Days 2009
Apache Wicket and Java EE sitting in a tree
Wicket Deliver Your Webapp On Time
DOSUG Wicket 101
Wicket Web Framework 101
Wicket KT part 2
Wicket Next (1.4/1.5)
Component Framework Primer for JSF Users
Wicket 2010
How Scala, Wicket, and Java EE Can Improve Web Development
Ad

More from Martijn Dashorst (17)

PDF
HTMX: Web 1.0 with the benefits of Web 2.0 without the grift of Web 3.0
PDF
From Floppy Disks to Cloud Deployments
PDF
SOLID principles
PDF
Converting 85% of Dutch Primary Schools from Oracle to PostgreSQL
PDF
Solutions for when documentation fails
PDF
Whats up with wicket 8 and java 8
PDF
Code review drinking game
PDF
Java Serialization Deep Dive
PDF
Code review drinking game
PDF
Scrum: van praktijk naar onderwijs
PDF
Who Automates the Automators? (Quis Automatiet Ipsos Automates?)
PDF
De schone coder
PDF
Vakmanschap is meesterschap
PDF
Guide To Successful Graduation at Apache
PDF
Wicket In Action
PDF
Apache Wicket: Web Applications With Just Java
PDF
Wicket Live on Stage
HTMX: Web 1.0 with the benefits of Web 2.0 without the grift of Web 3.0
From Floppy Disks to Cloud Deployments
SOLID principles
Converting 85% of Dutch Primary Schools from Oracle to PostgreSQL
Solutions for when documentation fails
Whats up with wicket 8 and java 8
Code review drinking game
Java Serialization Deep Dive
Code review drinking game
Scrum: van praktijk naar onderwijs
Who Automates the Automators? (Quis Automatiet Ipsos Automates?)
De schone coder
Vakmanschap is meesterschap
Guide To Successful Graduation at Apache
Wicket In Action
Apache Wicket: Web Applications With Just Java
Wicket Live on Stage
Ad

Recently uploaded (20)

PPTX
breach-and-attack-simulation-cybersecurity-india-chennai-defenderrabbit-2025....
PDF
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
PDF
A Day in the Life of Location Data - Turning Where into How.pdf
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
creating-agentic-ai-solutions-leveraging-aws.pdf
PDF
madgavkar20181017ppt McKinsey Presentation.pdf
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
CroxyProxy Instagram Access id login.pptx
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Reimagining Insurance: Connected Data for Confident Decisions.pdf
PPTX
Belt and Road Supply Chain Finance Blockchain Solution
PDF
Event Presentation Google Cloud Next Extended 2025
PDF
REPORT: Heating appliances market in Poland 2024
PDF
Transforming Manufacturing operations through Intelligent Integrations
PDF
Smarter Business Operations Powered by IoT Remote Monitoring
PDF
KodekX | Application Modernization Development
PDF
CIFDAQ's Market Wrap: Ethereum Leads, Bitcoin Lags, Institutions Shift
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
ai-archetype-understanding-the-personality-of-agentic-ai.pdf
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
breach-and-attack-simulation-cybersecurity-india-chennai-defenderrabbit-2025....
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
A Day in the Life of Location Data - Turning Where into How.pdf
Chapter 3 Spatial Domain Image Processing.pdf
creating-agentic-ai-solutions-leveraging-aws.pdf
madgavkar20181017ppt McKinsey Presentation.pdf
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
CroxyProxy Instagram Access id login.pptx
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Reimagining Insurance: Connected Data for Confident Decisions.pdf
Belt and Road Supply Chain Finance Blockchain Solution
Event Presentation Google Cloud Next Extended 2025
REPORT: Heating appliances market in Poland 2024
Transforming Manufacturing operations through Intelligent Integrations
Smarter Business Operations Powered by IoT Remote Monitoring
KodekX | Application Modernization Development
CIFDAQ's Market Wrap: Ethereum Leads, Bitcoin Lags, Institutions Shift
Understanding_Digital_Forensics_Presentation.pptx
ai-archetype-understanding-the-personality-of-agentic-ai.pdf
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...

Wicket In Action - oredev2008