I got a controller
@Controller
public class ModxProxyController
{
@RequestMapping("/face/blog")
public ModelAndView processFace()
{...}
}
It only processes request to URL /face/blog. And i need it to process (in the same method) more URLs. But to the moment my app starts I don't know that URLs. I can retrieve them once a day from 3rd party service. So the task is - programmatically add URLs to be processed with this method (processFace).