码迷,mamicode.com
首页 > Web开发 > 详细

【DRP】-JSTL核心库 c:out标签

时间:2016-07-25 00:18:25      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:

1、引入jar包

技术分享

 

index页面:作用点击连接调用页面

<a href="servlet/JstlCoreServlet">测试JSTL核心库</a><br>

 

JstlCoreServlet类,作用:存储数据,转发页面!
package com.bjpowernode.jstl;

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class JstlCoreServlet extends HttpServlet {

    @Override
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        //普通字符串
        request.setAttribute("hello", "Hello World");
        
        request.getRequestDispatcher("/jstl_core.jsp").forward(request, response);
    }

}

 

jstl_core.jap页面

<%@ page language="java" contentType="text/html; charset=GB18030"
    pageEncoding="GB18030"%>
 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>Insert title here</title>
</head>
<body>
    <hl>测试JSTL核心库</hl>
    <hr>
    <li>采用c:out标签</li><br>
    hell(使用标签):<c:out value="123"/>
   
</body>
</html>

 

引入jar包路径:

技术分享技术分享

 

 

其中的jar包在文件中查找!

【DRP】-JSTL核心库 c:out标签

标签:

原文地址:http://www.cnblogs.com/yinweitao/p/5701945.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!