I'm returning a Viewablein my java while which returns a jspwhich is located in the WebContent directory. In that directory there are my cssand jsdirectories where my files are located. My jsp's reference these files using relative paths. e.g js/javascript.js.
However, if I load any of these .jsp's via a return new Viewable("myPage.jsp"); in my .javafiles the paths seem to mess up as when the url is loaded the browser shows the url of the java file and all relative paths fail. How can I correct this issue?