How to Include a file outside the application (war) using jsp include - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T03:07:00Zhttp://stackoverflow.com/feeds/question/828973http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/828973/how-to-include-a-file-outside-the-application-war-using-jsp-include0How to Include a file outside the application (war) using jsp include Pratheeswaran.R2009-05-06T10:24:25Z2009-10-22T07:54:06Z
<p>I am using "jsp:include" to include a static file in one of my jsp files. It works fine when the static html file is located inside the application folder. However if its kept outside the application folder it is not included in the JSP file. </p>
<p>Note: I have created a context for the folder where the static file is saved and I m able to view the html file with direct url.</p>
<p>Please help..</p>
http://stackoverflow.com/questions/828973/how-to-include-a-file-outside-the-application-war-using-jsp-include/829807#8298072Answer by Peter Hilton for How to Include a file outside the application (war) using jsp include Peter Hilton2009-05-06T14:14:37Z2009-05-06T14:14:37Z<p>You can only use <code>jsp:include</code> for resources inside your web application context. You will need to either use <code>java.io.File</code> or similar to load from a file system path, or <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/ClassLoader.html#getResource%28java.lang.String%29" rel="nofollow">ClassLoader.getResource</a> to load a resource from the classpath.</p>
http://stackoverflow.com/questions/828973/how-to-include-a-file-outside-the-application-war-using-jsp-include/829816#8298160Answer by belugabob for How to Include a file outside the application (war) using jsp include belugabob2009-05-06T14:16:45Z2009-05-06T14:16:45Z<p>Just out of interest - what is the reason for wanting to do this? - there may be an alternative approach.</p>
<p>I suspect that you want to have some configuration that is independent of the WAR file, and is unique to each environment that the WAR is deployed to.</p>
http://stackoverflow.com/questions/828973/how-to-include-a-file-outside-the-application-war-using-jsp-include/839027#8390271Answer by Pratheeswaran.R for How to Include a file outside the application (war) using jsp include Pratheeswaran.R2009-05-08T09:34:06Z2009-05-08T09:34:06Z<p>I have solved this problem using the <strong>c:import</strong> tag.</p>
<p> </p>
<p>To define the dynamic URL I have used the bean:define tag. Thank you friends for the suggestions and help.</p>
http://stackoverflow.com/questions/828973/how-to-include-a-file-outside-the-application-war-using-jsp-include/1605633#16056330Answer by Shine for How to Include a file outside the application (war) using jsp include Shine2009-10-22T07:54:06Z2009-10-22T07:54:06Z<p>You Could Also Try Using IFrame.</p>