美文网首页
Java web开发之Tomcat目录和web工程简介

Java web开发之Tomcat目录和web工程简介

作者: flemingchen | 来源:发表于2017-11-07 16:36 被阅读19次

Tomcat目录简介

tomcat目录
  • bin目录里放置了各种操作服务器相关的程序文件,主要关注startup.bat和shutdown.bat,顾名思义,是分别启动tomcat和关闭tomcat。


    bin
  • conf目录里放置了很多配置文件,主要关注server.xml,可以用来修改端口


    conf

端口port可以按需要更改,如8888,80等等,增加URIEncoding属性为UTF-8,是为了在服务器处理get请求时,参数可能存在中文时避免乱码。


port
  • lib是服务器需要用到的类库
  • logs是服务器运行时的log记录
  • temp存放了服务器运行时产生的临时文件
  • webapps是应用程序存放的位置
  • work里面存放的是所有的webapps目录下的应用编译出来的.java和.class文件

web工程简介

web工程

基本的web工程包括index.jsp和WEB-INF,WEB-INF里面包括classes和lib,最关键的是web.xml,classes里面包含的是工程编译生成的字节码文件.class,lib里是用到的库,web.xml里配置了程序的相关参数。

  • index.jsp
<%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>my first web app</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
  </head>
  
  <body>
    <h1>你好,中国</h1>
    <hr>
  </body>
</html>
  • 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_4_0.xsd"
  version="4.0"
  metadata-complete="true">

    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.xhtml</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>

</web-app>

将项目放到webapps目录下,启动tomcat后,运行http://localhost:8080/myfirstweb

运行结果

注意

真正完整的项目还会包括css,js,img等等这些资料,值得一说的是,这里的WEB-INF目录是客户端,也就是浏览器无法访问到的,只有服务器可以操作。

相关文章

网友评论

      本文标题:Java web开发之Tomcat目录和web工程简介

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