Requirement - suppose the servlet-container is asked to present 'abc.jsp',
it should serve the very first jsp that meets the following lookup sequence:
abc_<req_language>_<req_country>_<req_variant>.jsp
abc_<req_language>_<req_country>.jsp
abc_<req_language>.jsp
abc_<def_language>_<def_country>_<def_variant>.jsp
abc_<def_language>_<def_country>.jsp
abc_<def_language>.jsp
abc.jsp
 
Is it possible to do it declaratively in tomcat (or any other container), or
is this something that needs to be coded ??
Any help is appreciated.
 
Gautam
 
 

Reply via email to