有可能最好在一个目录下,不然你这样试试吧
<jsp:include page="../test/jsp/include/tip.jsp" flush="true"/>

解决方案 »

  1.   

    <%@ include file="../text/jsp/include/tip.jsp" %>
    或者跟楼上所说
      

  2.   

    不知道你的test文件夹发布名字是什么,加入是test的话
    <jsp:include page="/test/jsp/include/tip.jsp" flush="true"/>
      

  3.   

    决不能用“../”,你的test目录和ROOT目录同一级别,它必须设置虚拟目录,否则无法调用到server.xml文件里设置虚拟目录
      

  4.   

    stride(赛扬) 你说的不对,/tomcat/webapps/ 下的文件夹会自动被 TOMCAT 加载并且发布
      

  5.   

    哦,虽然不能帮你,但是帮你UP一下!希望你能得到好的解答!
    UP! :)
      

  6.   

    你tip.jsp里是不是放的数据库链接代码?
    我也试过一次,但如果是,是不好用的。
      

  7.   

    直接INCLUDE应该不可以,两个应用的东西。
      

  8.   


    使用绝对路径试试吧:<jsp:include page="F:\\.....\\....\\tomcat\\webapps\\test\\jsp\\include\\tip.jsp" flush="true"/>F是根据实际情况改变的,试试吧
      

  9.   

    try:<jsp:include page="http://xxx.xxx.xxx.xxx/test/jsp/include/tip.jsp" flush="true"/>