JSTL taglib URI is obsolete?

后端 未结 2 1257
耶瑟儿~
耶瑟儿~ 2021-02-04 06:23

I\'ve been checking out Spring MVC tutorial and copied this small JSP code from there:

<%@ page session=\"false\"%>
<%@ taglib prefix=\"c\" uri=\"http:/         


        
2条回答
  •  野性不改
    2021-02-04 06:51

    If you're still getting this error, but you're hand crafting your pom, you probably have missed the standard library. e.g. I'd missed

        
            taglibs
            standard
            ${jstl.version}
        
    

提交回复
热议问题