美文网首页
WEB服务器

WEB服务器

作者: 踏雪鸿雁 | 来源:发表于2017-01-01 20:45 被阅读19次

    web资源:静态、动态
    静态技术:html
    动态技术:JSP/Servlet、ASP、PHP等
    java中,动态web资源开发技术统称为javaweb,即动态的web资源

    Paste_Image.png

    常见web服务器:

    Paste_Image.png Paste_Image.png Paste_Image.png

    (JavaEE包含的13门技术, tomcat服务只支持全部的JSP以及Servlet规范)

    Paste_Image.png

    互联网常用的协议以及其对应的端口:
    http 80
    smtp 25
    pop3 110
    ftp 23
    https 443
    tomcat 启动失败的原因:
    1、tomcat 是java程序,所以需要java环境的支持,故需要配置java环境
    2、端口被占用


    Paste_Image.png

    TomCat结构目录

    Paste_Image.png

    web应用虚拟目录映射的配置

    Paste_Image.png Paste_Image.png

    web应用虚拟目录映射的配置:

    1.conf/server.xml 文件中的Host标签中配置,如:<Context path="/myWebApp" docBase="D:\myWebApp"/> (不推荐使用该方式,每次修改之后必须要重新启动服务器)
    2.$CATALINA_BASE/conf/[enginename]/[hostname]/
    and renamed to application's base file name plus a ".xml" extension.
    即:conf/\Catalina\localhost目录下建立 name.xml 文件,注意:文件名将作为映射的web目录名。如new.xml, a#b.xml,... (备注:无需在配置path,<Context docBase="D:\myWebApp"/>,
    ROOT.xml 可配置为缺省web应用
    )

    配置主机,并指定缺省应用

    <Host name="www.sina.cn" appBase="D:\sina" >
    <Context path="" docBase="\mail"/>
    </Host>
    在web.xml中配置应用的主页:
    <?xml version="1.0" encoding="UTF-8"?>

    <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
    http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
    version="3.1">

    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>1.html</welcome-file>

    </welcome-file-list>
    

    </web-app>

    Web资源访问流程图

    http://wenku.baidu.com/link?url=VHjGa0GpxfwIYoTjsnfpZfhoGjuKdmR10kKn-ADbFHNaAKqwPvBAZtcCWYEZw9QdLgw0FZu5NpmtsznbkNPgjtRkt_gLrSPBTS_k60VCLpe
    (UML图三大工具:三大UML建模工具Visio、Rational Rose、PowerDesign的区别)

    相关文章

      网友评论

          本文标题: WEB服务器

          本文链接:https://www.haomeiwen.com/subject/rblsvttx.html