zoukankan      html  css  js  c++  java
  • Using Maven to generate a Java Project or Web project

    I often to generate a Java project or Web project with Eclipse tool. Well, I have no idea when I want to generate a Java project or Web project with the command window in the Windows 7. So, I think I need to record how to generate a Java project or Web project with the command window in the Windows 7.

    En, you should install the Maven in your computer before you want to generate a project. and if you have no idea how to install Maven in your computer, you could go to "Install the Maven in your computer" to see more information about how to install the Maven in your computer.

    Now, Using the below command to generate a Java project:

    F:maven>mvn archetype:generate -DgroupId=com.b510.shopping -DartifactId=shoppin-core -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false

    then click the "Enter" to run command

    you can see the "BUILD SUCCESS" , It means that you had generated a Java project just now.

    Now, Using below command to generate a Web project:

    F:maven>mvn archetype:generate -DgroupId=com.b510.shopping -DartifactId=shopping-core -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false

    The different between in generating a Java project and a Web project with command window in the Windows 7:

    -DarchetypeArtifactId=maven-archetype-quickstart      --> For Java Project
    -DarchetypeArtifactId=maven-archetype-webapp          --> For Web Project

    ========================================================

    More reading,and english is important.

    I'm Hongten

     

    大哥哥大姐姐,觉得有用打赏点哦!多多少少没关系,一分也是对我的支持和鼓励。谢谢。
    Hongten博客排名在100名以内。粉丝过千。
    Hongten出品,必是精品。

    E | hongtenzone@foxmail.com  B | http://www.cnblogs.com/hongten

    ========================================================

  • 相关阅读:
    AndroidUI的组成部分ProgressBar
    NVIDIA+关联2015写学校招收评论(嵌入式方向,上海)
    谈论json
    排序算法(三):插入排序
    逻辑地址、线性地址、物理地址以及虚拟存储器
    逻辑地址、线性地址和物理地址的关系
    堆和栈都是虚拟地址空间上的概念
    缺页异常详解
    虚拟内存-插入中间层思想
    深入理解计算机系统之虚拟存储器
  • 原文地址:https://www.cnblogs.com/hongten/p/hongten_maven_generate_project.html
Copyright © 2011-2022 走看看