您的位置:首页 > 编程语言 > Java开发

java.lang.ClassNotFoundException: javax.servlet.jsp.jstl.core.Config

2013-04-18 23:07 531 查看
缺少jstl标签库,jstl.jar,
The problem is it miss jstl jar. By default, Tomcat container doesn’t contain any jstl library. To fix it, declares jstl.jar in your Maven [code]pom.xml
 file.[/code]
<dependency><groupId>javax.servlet</groupId><artifactId>jstl</artifactId><version>1.2</version><scope>runtime</scope></dependency>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐