I said urgent because I have this issue and needs to be fixed immediately.
I have a
jsp which is in some folder outside WEB-INF. This is my project structure and I can not change it.
Now this jsp contains something like :
<%@ include file= "../something.inc"
This file .inc resides inside WEB-INF/somefolder/.
I get 'included file not found' exception.
So is it a good idea to give the path like :
<%@ include file= "/WEB-INF/somefolder/something.inc"
OR
I should just copy something.inc file to the location where my jsp is orginally trying to find ?
This will be deployed on a production environment. So I hope it does not create any problem.