• 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中,打开浏览器即可查看内容

    以下即是项目的文件结构

  • 相关阅读:
    27 Spring Cloud Feign整合Hystrix实现容错处理
    26 Spring Cloud使用Hystrix实现容错处理
    25 Spring Cloud Hystrix缓存与合并请求
    24 Spring Cloud Hystrix资源隔离策略(线程、信号量)
    23 Spring Cloud Hystrix(熔断器)介绍及使用
    22 Spring Cloud Feign的自定义配置及使用
    21 Spring Cloud使用Feign调用服务接口
    20 Spring Cloud Ribbon配置详解
    19 Spring Cloud Ribbon自定义负载均衡策略
    18 Spring Cloud Ribbon负载均衡策略介绍
  • 原文地址:https://www.cnblogs.com/liqimingaikeke/p/6602055.html
Copyright © 2020-2023  润新知