Zemzela
Zemzela

Reputation: 3080

Wicket invalidate cached pages

I'm make a custom resource loader which loads resource properties from database. Those properties can be changed by some user of the application but changes doesn't affect because all the pages are cached in that locale so I need to make them invalid. If you have any suggestion about direction where to start looking.

Upvotes: 1

Views: 867

Answers (1)

martin-g
martin-g

Reputation: 17513

See org.apache.wicket.settings.IMarkupSettings.getMarkupCache(), org.apache.wicket.markup.IMarkupCache.removeMarkup(String).

Upvotes: 0

Related Questions