/myapp/connect/linkedin redirects to /myapp/connect/connect/linkedinConnected
I have a Spring Roo app that I've pretty much stripped down and I've added a ConnectController bean to my webmvc-config.xml configuration file. When I browse to /social/connect/linkedin (where "social" is my app), it attempts to redirect me to /social/connect/connect/linkedinConnected but it seems the extra "connect" in the path is throwing off ConnectController. I debugged ConnectController and all I can see is that the method connectedView(String providerId) is returning getViewPath() + providerId + "Connected". Method getViewPath() returns "connected/" which being a relative path just assumes it's base path is the current "/social/connect/" instead of "/social/". I think I'm just missing something trivial here if someone can point me in the right direction.
Thanks.