How to Include a file outside the application (war) using jsp include - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T03:07:00Z http://stackoverflow.com/feeds/question/828973 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/828973/how-to-include-a-file-outside-the-application-war-using-jsp-include 0 How to Include a file outside the application (war) using jsp include Pratheeswaran.R 2009-05-06T10:24:25Z 2009-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#829807 2 Answer by Peter Hilton for How to Include a file outside the application (war) using jsp include Peter Hilton 2009-05-06T14:14:37Z 2009-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#829816 0 Answer by belugabob for How to Include a file outside the application (war) using jsp include belugabob 2009-05-06T14:16:45Z 2009-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#839027 1 Answer by Pratheeswaran.R for How to Include a file outside the application (war) using jsp include Pratheeswaran.R 2009-05-08T09:34:06Z 2009-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#1605633 0 Answer by Shine for How to Include a file outside the application (war) using jsp include Shine 2009-10-22T07:54:06Z 2009-10-22T07:54:06Z <p>You Could Also Try Using IFrame.</p>