美文网首页
2018-09-15

2018-09-15

作者: nYn牛牛 | 来源:发表于2018-09-15 11:32 被阅读0次

    一级标题

    -老师IP 192.168.3.49
    -我的IP 192.168.3.21
    1.列表
    2.列表
    -列表2

    二级标题

    -列表

    超链接

    百度

    图片

    image.png image.png

    代码

    hello word

    多段代码

    select * from aaa;
    select * from bbb;
    

    引用

    哈哈哈

    表格

    字段1 字段2 字段3
    1 a A
    2 b B
    3 C c C

    -- 分割线1111111111111111111111111111111111111111111111111111111

    根据域名查IP

    cmd >ping 域名
    ping ip(查IP通不通)

    查看自己IP

    CMD>ipconfig
    本机 127.0.0.1 localhost

    tomcat

    版本:二进制/源代码
    安装包;windows;zip
    linux;tar.gz
    mac;dmg

    tomcat下载完

    bin启停 startup.bat,startup.sh.
    shutdown.bat
    conf配置文件(改端口,改编码,设置https)
    logs日志,catanina.out默认日志文件
    webapps应用

    image.png

    启动,默认端口8080


    image.png

    配置在webapps下(图片,html)


    image.png image.png

    html

    编码

    <html>
         <head>
           <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />--文字编码
           <title>查询学生列表</title>--标题
         </head>
         <body>--内容
             第一个界面
         </body>
    </html>
    

    访问


    image.png

    alt+shift 可以同时写多条


    image.png

    接口调用

    <html>
         <head>
           <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
           <title>张渊</title>
         </head>
         <body>
             <form action="http://www.guoyasoft.com:8080/guoya-server/studyInfo" method="get">
               --action是请求地址 method请求方式 --
               方法名:<input type="text" name="method" value="getUrls"></br>
               --</br>是换行,type是类型,text是文本--
               年龄:<input type="number"></br>-- number是纯数字--
               生日:<input type="date"></br>   --date日期 --
               头像:<input type="file"></br>   -- file文件----
               密码:<input type="psaaword"></br> --password密码 --
               性别:<input type="radio" name="sex">男<input type="radio" name="sex">女
               -- radio是选择框,,submit是按钮----
               <input type ="submit" value="查询">
               </form>
         </body>
    </html>
    
    image.png

    相关文章

      网友评论

          本文标题:2018-09-15

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