My group is trying to figure out how to create Web Applications within WebLogic. My problem is that even though my included jsp file has a path of (as an example):
.../webappname/jsp/librari
es/library
_name.jsp,
I have to use this for WebLogic to be able to find it:
<%@ include file="/jsp/libraries/libra
ry_name.js
p" %>
webappname is the name of the web app and the so-called context-root.
All the JSPs are linking to /webappname/jsp/whatever in their links and they work just fine, but the rules seem to be different for includes or I'm setting something incorrectly in WebLogic.
We also use Eclipse, and if we use <%@ include file="/jsp/libraries/libra
ry_name.js
p" %> it can't resolve the imports within library_name.jsp, but if we use <%@ include file="/webappname/jsp/libr
aries/libr
ary_name.j
sp" %>, it's able to find them.
Any ides on what my problem could be?
Start Free Trial