JSTL xmlns namespace differences between JSF 1.2 and JSF 2.x?

后端 未结 2 2059
小鲜肉
小鲜肉 2020-12-07 19:15

I have a JSF 1.2 based webapp from which I copied the JSTL import

xmlns:c=\"http://java.sun.com/jstl/core\"

You can also find this import i

2条回答
  •  一整个雨季
    2020-12-07 20:06

    JSTL is now part of EL.
    It is not dependent on JSF implementation but depends on what servlet version your servelet container is compliant for.
    So these must be running of different servers or different versions of same server.


    Short answer is from 2.4 upwards which jboss 7 is .
    If you go through JSTL doc here you will find out any way.
    Other wise here is good link.
    And an other one here from BalusC.

提交回复
热议问题