Initialize URL Mapper (and maintenance state) directly after servlet init to speed up servlet start
With recent WebDSL, we can define which tasks to invoke on application start and application stop.
Previously, the order was random, which often caused the URL Mapper to initialize after other, slower, tasks, causing the requests to be blocked for a longer time until the URL Mapper was initialized.Let’s use
Submitted by Elmer van Chastelet on 10 February 2026 at 11:23on application startandon application stopforinitUrlMapper,initMaintenanceStateandStaticBackupEngine.reset()