Skip to content

Instantly share code, notes, and snippets.

anonymous
anonymous / HomePage.java
Created October 12, 2012 16:59
Creating a WicketApplication through Guice
public class HomePage extends WebPage {
@Inject
private Injector injector;
public HomePage(final PageParameters parameters) {
super(parameters);
String hello = injector.getInstance(Key.get(String.class, Names.named("hello")));
add(new Label("hello", hello));