Skip to content

Instantly share code, notes, and snippets.

@mikepence
Created October 3, 2013 03:33
Show Gist options
  • Save mikepence/6804479 to your computer and use it in GitHub Desktop.
Save mikepence/6804479 to your computer and use it in GitHub Desktop.
public class WicketApplication extends WebApplication
{
/**
* @see org.apache.wicket.Application#getHomePage()
*/
@Override
public Class<? extends WebPage> getHomePage()
{
return HomePage.class;
}
/**
* @see org.apache.wicket.Application#init()
*/
@Override
public void init()
{
super.init();
// add your configuration here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment