SSM 提示 http://java.sun.com/jsp/jstl/core] cannot be resolved in either web.xml or the jar files dep

错误的jsp 页面:

<%@ page language="java" contentType="text/html; charset=UTF-8"
	pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>




账户的列表页面


	
			
编号 账户名称 账户金额
${account.id} ${account.name } ${account.money }

提示错误信息:

http://java.sun.com/jsp/jstl/core] cannot be resolved in either web.xml or the jar files deployed with this application

大致意思是jstl 标签在部署的应用容器中不能被解析

解决办法:复制jstl.jar 拷贝至Tomcat的lib 文件夹中

你可能感兴趣的:(java,引用第三方包异常问题,java,异常问题)