问答详情
源自:4-6 FileUpload--单文件上传

maven 运行有错,还有就是难道每次写都是要这么来启动容器吗

Can not find the tag library descriptor for "http://java.sun.com/jsp/

jstl/core"



pow.xml 中也有错cannot read lifecycle mapping metadata for artfact什么的这是怎么回事儿呢

提问者:qq_信不信把你删了_0 2018-03-29 23:05

个回答

  • qq_hold住自己hold不_0
    2018-04-01 18:21:02

    Can not find the tag library descriptor for "http://java.sun.com/jsp/

    jstl/core"

    是因为你的jsp需要导入jstl.jar 包。这个包在课程中是没有介绍的。所以需要你自己去网上找下相关的配置


    <dependency> 

      <groupId>javax.servlet</groupId>

      <artifactId>jstl</artifactId>

      <version>1.2</version>

      </dependency>

      <dependency>

    <groupId>taglibs</groupId> 

    <artifactId>standard</artifactId>

    <version>1.1.2</version>

    </dependency>