How to define custom wicket tag

wicket

Solution

To do this, you'll need to implement your own IComponentResolver.

This blog article shows an example somewhat resembling what you're after.

Problem

I could not find a wicket tag like wicket:include? Can anyone suggest me anything? I want to include/inject raw source into html files? If there is no such utility, any suggestions to develop it? update i am looking for sth like jsp:include. this inclusion is expected to be handled on the server side.

Original source