mac Eclipse 配置安装tomcat

作者: 路墨 | 来源:发表于2017-03-21 11:23 被阅读72次

    1. Eclipse安装tomcat

    1. 之前的eclipse安装好了,这里把它他开 开始界面neon.2
      设置工作站,就是以后你新建的项目都在这里面
      欢迎界面 点x就行
    2. 添加tomcat
    添加tomcat服务
    补上图
    1. 新建工程
    Paste_Image.png
    Paste_Image.png
    Paste_Image.png
    文件目录
    1. 书写helloworld

    在webcontent文件夹下新建text.jsp,内容如下:
    <code><%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
    <!doctype html>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>jsp</title>
    </head>
    <body>
    <%
    out.println("Hello World!");
    %>
    </body>
    </html></code>

    1. 新建servers服务
    Paste_Image.png

    next添加项目进去,然后直接finish就行了。
    右键new文件夹


    Paste_Image.png
    Paste_Image.png

    完成

    相关文章

      网友评论

      本文标题:mac Eclipse 配置安装tomcat

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