zoukankan      html  css  js  c++  java
  • JSTL核心标签库学习(一)

      首先有必要提一下如何安装JSP标准标签库。下载链接如下http://archive.apache.org/dist/jakarta/taglibs/standard/binaries/。

    选择下载条目如下图所示:。然后将这个zip文件下载后解压,在这个路径下寻找到这两个jar文件。,也就说说在你解压后的lib文件夹下,将这两个jar拷贝到WEB-INF/lib下。

    接下来我们在web.xml中添加如下配置:

    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" 
        xmlns="http://java.sun.com/xml/ns/j2ee" 
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
            http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    	<jsp-config>
    	<taglib>
    	<taglib-uri>http://java.sun.com/jstl/fmt</taglib-uri>
    	<taglib-location>/WEB-INF/fmt.tld</taglib-location>
    	</taglib>
    	<taglib>
    	<taglib-uri>http://java.sun.com/jstl/fmt-rt</taglib-uri>
    	<taglib-location>/WEB-INF/fmt-rt.tld</taglib-location>
    	</taglib>
    	<taglib>
    	<taglib-uri>http://java.sun.com/jstl/core</taglib-uri>
    	<taglib-location>/WEB-INF/c.tld</taglib-location>
    	</taglib>
    	<taglib>
    	<taglib-uri>http://java.sun.com/jstl/core-rt</taglib-uri>
    	<taglib-location>/WEB-INF/c-rt.tld</taglib-location>
    	</taglib>
    	<taglib>
    	<taglib-uri>http://java.sun.com/jstl/sql</taglib-uri>
    	<taglib-location>/WEB-INF/sql.tld</taglib-location>
    	</taglib>
    	<taglib>
    	<taglib-uri>http://java.sun.com/jstl/sql-rt</taglib-uri>
    	<taglib-location>/WEB-INF/sql-rt.tld</taglib-location>
    	</taglib>
    	<taglib>
    	<taglib-uri>http://java.sun.com/jstl/x</taglib-uri>
    	<taglib-location>/WEB-INF/x.tld</taglib-location>
    	</taglib>
    	<taglib>
    	<taglib-uri>http://java.sun.com/jstl/x-rt</taglib-uri>
    	<taglib-location>/WEB-INF/x-rt.tld</taglib-location>
    	</taglib>
    	</jsp-config>
    </web-app>

    然后修改index.jsp

    将工程部署到tomcat中,打开浏览器即可查看内容

    以下即是项目的文件结构

  • 相关阅读:
    django1.8模板位置的设置setting.py
    django创建工程,用命令
    杨辉三角(生成器generator)
    Git操作的一些注意
    git的一些常用操作命令
    Python合并列表,append()、extend()、+、+=
    ElementTree 解析xml(minidom解析xml大文件时,MemoryError)
    Spring Aop(十六)——编程式的自定义Advisor
    Spring Aop(十五)——Aop原理之Advised接口
    Spring Aop(十四)——Aop自动创建代理对象的原理
  • 原文地址:https://www.cnblogs.com/liqimingaikeke/p/6602055.html
Copyright © 2011-2022 走看看