| [news.eclipse.webtools] Re: JSP from multiple directories |
It is supported, but there is no UI that allows to do that.
You have to change the hidden file org.eclipse.wst.common.component (use Ctrl+Shift+R and type its name) in your project/.settings folder. Add as many <wb-resource> entries with deploy-path="/" as you need. Example:
<wb-resource deploy-path="/" source-path="/folder-with-JSPs-1"/> <wb-resource deploy-path="/" source-path="/folder-with-JSPs-2"/> <wb-resource deploy-path="/" source-path="/folder-with-JSPs-3"/>
Any ideas?