I am developing an app using spring mvc 3, tiles2
My issue is I have to use to different views one for default web and one for facebook.
for default view I have my jsp's in WEB-INF/views
and for facebook app I have my jsp's in WEB-INF/fb
now I want to map these two folders based on url. suppose my url is HOST/index then application should use views from WEB-INF/views.
and if url is HOST/fb/index then it should use views from WEB-INF/fb folder
I have two different tiles-config.xml but am not able to map properly
as there is little difference in facebook views I dont want to change my controllers.
issue seems with tiles2 configuration, they are being overlapped. Only one works at a time
Any idea how can proceed?