如题.

解决方案 »

  1.   

    补充说明一下,我在TOMCAT下发布可以显示
    WEBLOGIC版本 8.1 jdk1.4
      

  2.   

    在文件头添加
    <%@page isELIgnored="false" %> 
      

  3.   

    http://www.javaworld.com.tw/jute/post/view?bid=6&id=83532&tpg=1&ppg=1&sty=1&age=0well, the problem is JSTL 1.1, 
    weblogic 8.1 just supports JSTL 1.0 , the same as Tomcat 4 not supports JSTL 1.1.
    just to download the v1.0 from jakarta.apache.org/taglibs
      

  4.   

    4楼正解,weblogic8.1只支持JSTL1.0版本.
      

  5.   

    不支持直接输出${subject.properties}
    而要改为:<c:out value="${subject.properties}"/> 
    除了2个jar包 standard.jar jstl.jar
    taglib要改为以下连接 注意com后没有/jsp
    <%@taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
    我试了试很管用