What's the best way to change or override the @RequestMapping URL for ProviderSignInController or ConnectController? They seems to default to "/connect" and "/signin", but I would like to use a different path (e.g., "/social/connect" and "/social/signin").
I tried extending these classes and defining a new @RequestMapping, and this works -- however, the old URL's still resolve (e.g., "/connect" still resolves).
