• MyEclipse中新建JSP(Advanced Template)文件时自动生成的


    1     <meta http-equiv="pragma" content="no-cache">
    2     <meta http-equiv="cache-control" content="no-cache">
    3     <meta http-equiv="expires" content="0">    
    网页中常常看见有这样的标记,他们是清楚浏览器缓存用的,记录下来,方便以后查询,以免忘记。
    清除浏览器中的缓存,它和其它几句合起来用,就可以使你再次进入曾经访问过的页面时,ie浏览器必须从服务端下载最新的内容,达到刷新的效果。
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    

      

    myeclipse中jsp页面<meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> 是指

    搜索关键字,就是用搜索引擎搜索的时候会和这个关键字匹配,从而找到你的网站。

    <%
    String path = request.getContextPath();
    String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
    %>
    

     

    request.getContextPath()——当前应用的名字,就是工程的名字。
    request.getScheme()——当前页面使用的协议,比如“http”
    request.getServerName()——当前服务器的名字,比如“localhost”
    request.getServerPort()——当前服务器使用的端口
    <base href="<%=basePath%>">
    

    base标签的作用:定位路径用的,表示该页面的请求是根路径下的。

    比如说 你下面有个<img src='1.jpg' /> 因为你上面设置了base标签 所以这个img标签的src的路径就应该为basePath +1.jpg。



  • 相关阅读:
    maven 依赖阿里云仓库
    jacob
    mysql
    简单明了区分escape、encodeURI和encodeURIComponent(转载)
    eclipse
    StringBuffer的构造方法和capacity的返回值关系
    toString和valueOf的区别
    js中ajax返回数据
    springmvc 文件上传
    springmvc 上传文件报错 String不能转成multipartFile
  • 原文地址:https://www.cnblogs.com/4everlove/p/3378874.html
Copyright © 2020-2023  润新知