美文网首页
IntelliJ IDEA 2018 配置Java web开发环

IntelliJ IDEA 2018 配置Java web开发环

作者: 幸运三片叶 | 来源:发表于2019-07-17 16:50 被阅读0次

    一、配置要求

    二、配置过程

    ps:在IntelliJ IDEA里面“new Project” 就相当于eclipse里的“workspace”,而“new Module”才是创建一个工程。

    创建项目:file->new->project

    点击next,命名和选择位置, 点击完成。

    注意:如果盘符后面是\,要改成\。否则会出现文件不存在的错误。

    image

    创建后,在web-inf目录下创建classes文件夹和lib文件夹

    image

    选择:file->project structure

    点击:module->paths,

    将output path中的路径改为之前创建的classes目录的路径(即将后面编译的class文件默认生成到classes目录下)

    image image

    点击:Dependenceies->右侧绿色+->选择jars or directories

    添加:之前创建的lib目录路径,选择Jar Directory

    image image image

    点击 :Artifacts(打包方式),

    点击选择:

    include in project build \ Build on make(编译的时候就打包部署)

    show content of elements(显示详细的内容列表)

    image

    选择:Run -> Edit Configurations,

    点击左侧绿色+-> Tomcat Server -> Local

    点击Deployment,按确定。

    image image

    三、测试结果

    测试代码

    <%@ page contentType="text/html;charset=UTF-8" language="java" %>
    <html>
    <head>
        <title>客户信息显示</title></head>
    <body>
    <h1 align="center" color="#FFDD00">客户信息</h1>
    <form>
        <table align="center">
            <tr>
                <th>客户姓名</th>
                <th>客户种类</th>
            </tr>
            <tr>
                <td>张三</td>
                <td>普通客户</td>
            </tr>
            <tr>
                <td>李四</td>
                <td>VIP</td>
            </tr>
            <tr>
                <td>王二</td>
                <td>普通客户</td>
            </tr>
        </table>
    </form>
    </body>
    </html>
    

    测试步骤点击运行

    image

    在浏览器中输入

    localhost:8080

    如图所示,配置成功

    image

    参考 https://blog.csdn.net/weixin_38500325/article/details/82356175

    相关文章

      网友评论

          本文标题:IntelliJ IDEA 2018 配置Java web开发环

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