Hello,
I would like to use both jsp files and jspf files. Also, I would like to store both types in their own folder. For example,
/WEB-INF/jsp
/WEB-INF/jspf
Unfortunately my ViewResolver, which is configured like this
can only handle one folder.Code:<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver" p:prefix="/WEB-INF/jsp/" p:suffix=".jsp" />
I realise that I can rename all my *.jspf to *.jsp and move them into the jsp folder but I feel that it is clearer to seperate them.
I do not mind having to some convention within the logical names to indicate whether it is a jsp or a jspf view that is required.
What is the best way to go about this?
Thanks,
Steve.


Reply With Quote
