Re: Seeking help for a HotSwapAgent's Wicket plugin

2018-07-16 Thread Thomas Heigl
Hi Francesco, Do you have the appropriate Wicket settings enabled? I'm using this configuration in development mode: private static void initResourceSettings(WebApplication app) { > final ResourceSettings resourceSettings = app.getResourceSettings(); > if (!isDeployment(app)) { >

Re: Seeking help for a HotSwapAgent's Wicket plugin

2018-07-16 Thread Francesco Chicchiriccò
Hi Thomas, thanks for your reply. I have taken your WicketPlugin, reworked it a bit and generated https://gist.github.com/ilgrosso/c12fa371a5033de1e92b0a35115b6456 Unfortunately, it does not seem to work: once started Tomcat with hotswap-agent enabled, I can successfully reload Java classes,

Re: Seeking help for a HotSwapAgent's Wicket plugin

2018-07-13 Thread Thomas Heigl
Hi Francesco, I faced the same situation last week. I wrote a Wicket plugin that clears the Localizer cache. It does not clear the resource bundle cache because I use Spring's ReloadableResourceBundle, but that should be very easy to add. Configuration is a little more difficult than with

Seeking help for a HotSwapAgent's Wicket plugin

2018-07-13 Thread Francesco Chicchiriccò
Hi all, at Syncope we recently switched from JRebel to HotSwapAgent, mostly because the MyJRebel program has ended. All works quite well for Java classes, but we do have issues with HTML and properties files (for Resource Bundles) used by Wicket. Please consider that we do package our Wicket