Eclipse新建maven web项目

来源:互联网 发布:四维数据能分辨男女吗 编辑:程序博客网 时间:2024/05/14 19:34

(1)新建maven项目



(2)默认下一步



(3)选择mave-archetype-quickstart



(4)填写Group Id和Artifact Id



这时候新建的项目结构为:



然后在src-》main目录结构下新建这几个文件夹



MANIFEST.MF

Manifest-Version: 1.0
Class-Path: 


web.xml

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


index.jsp

<html>
<body>
<h2>Hello World!</h2>
</body>
</html>


至此maven-web项目创建完成

0 0
原创粉丝点击