美文网首页
黑猴子的家:Eclipse创建Maven Web项目方式二

黑猴子的家:Eclipse创建Maven Web项目方式二

作者: 黑猴子的家 | 来源:发表于2020-11-18 21:35 被阅读0次

    1、Maven Project

    File -> New -> Maven Project

    2、Next

    3、quickstart -> Next

    4、Artifact Id -> Finish

    5、创建项目成功

    6、Properties

    项目右键 -> Properties

    7、添加tomcat

    1)Java Build Path -> Libraries -> Add Library
    2)Server Runtime -> Next
    3)Tomcat -> Finish
    4)添加后效果

    8、Project Facets -> Convert to faceted form

    9、Further configuration available

    10、OK

    11、编辑web.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="3.0"
        xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    
        <welcome-file-list>
            <welcome-file>index.jsp</welcome-file>
        </welcome-file-list>
    </web-app>
    

    12、创建index.jsp

    13、启动tomcat浏览器访问

    相关文章

      网友评论

          本文标题:黑猴子的家:Eclipse创建Maven Web项目方式二

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