Maven学习---使用maven进行项目构建

1. 使用maven进行项目构建

MyEclipse 自带maven 插件

Eclipse 需要单独安装maven插件

1.1. Maven 在企业中怎么用的 ?

Maven : 项目构建工具 ,进行项目编译、测试、打包、运行、发布 ….

    使用 maven将工程进行组件化 ,项目分为 表现层、业务层、 数据层 属于maven创建 三个项目 ,分别进行三层开发

    Maven 和 Jenkins (hudson) 对项目进行持续集成

    企业中搭建私服

1.2. 建立maven骨架的项目,运行bos

1、 下载和解压 maven 的zip包

      链接:https://pan.baidu.com/s/1Qt7alAjiHA0SsXlFuRpxrg 密码:kyan

2、 在myeclipse 配置外部 maven

wpsDB92.tmp

3、 配置仓库setting文件 和 仓库位置

默认位置 C:UsersAdministrator.m2 (这个文件夹没有 settings,xml )

将解压maven目录下的settings.xml 复制C:UsersAdministrator.m2settings.xml

  1 <?xml version="1.0" encoding="UTF-8"?>
  2 
  3 <!--
  4 Licensed to the Apache Software Foundation (ASF) under one
  5 or more contributor license agreements.  See the NOTICE file
  6 distributed with this work for additional information
  7 regarding copyright ownership.  The ASF licenses this file
  8 to you under the Apache License, Version 2.0 (the
  9 "License"); you may not use this file except in compliance
 10 with the License.  You may obtain a copy of the License at
 11 
 12     http://www.apache.org/licenses/LICENSE-2.0
 13 
 14 Unless required by applicable law or agreed to in writing,
 15 software distributed under the License is distributed on an
 16 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 17 KIND, either express or implied.  See the License for the
 18 specific language governing permissions and limitations
 19 under the License.
 20 -->
 21 
 22 <!--
 23  | This is the configuration file for Maven. It can be specified at two levels:
 24  |
 25  |  1. User Level. This settings.xml file provides configuration for a single user, 
 26  |                 and is normally provided in ${user.home}/.m2/settings.xml.
 27  |
 28  |                 NOTE: This location can be overridden with the CLI option:
 29  |
 30  |                 -s /path/to/user/settings.xml
 31  |
 32  |  2. Global Level. This settings.xml file provides configuration for all Maven
 33  |                 users on a machine (assuming they're all using the same Maven
 34  |                 installation). It's normally provided in 
 35  |                 ${maven.home}/conf/settings.xml.
 36  |
 37  |                 NOTE: This location can be overridden with the CLI option:
 38  |
 39  |                 -gs /path/to/global/settings.xml
 40  |
 41  | The sections in this sample file are intended to give you a running start at
 42  | getting the most out of your Maven installation. Where appropriate, the default
 43  | values (values used when the setting is not specified) are provided.
 44  |
 45  |-->
 46 <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" 
 47           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
 48           xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
 49   <!-- localRepository
 50    | The path to the local repository maven will use to store artifacts.
 51    |
 52    | Default: ~/.m2/repository
 53   <localRepository>/path/to/local/repo</localRepository>
 54   -->
 55 
 56   <!-- interactiveMode
 57    | This will determine whether maven prompts you when it needs input. If set to false,
 58    | maven will use a sensible default value, perhaps based on some other setting, for
 59    | the parameter in question.
 60    |
 61    | Default: true
 62   <interactiveMode>true</interactiveMode>
 63   -->
 64 
 65   <!-- offline
 66    | Determines whether maven should attempt to connect to the network when executing a build.
 67    | This will have an effect on artifact downloads, artifact deployment, and others.
 68    |
 69    | Default: false
 70   <offline>false</offline>
 71   -->
 72 
 73   <!-- pluginGroups
 74    | This is a list of additional group identifiers that will be searched when resolving plugins by their prefix, i.e.
 75    | when invoking a command line like "mvn prefix:goal". Maven will automatically add the group identifiers
 76    | "org.apache.maven.plugins" and "org.codehaus.mojo" if these are not already contained in the list.
 77    |-->
 78   <pluginGroups>
 79     <!-- pluginGroup
 80      | Specifies a further group identifier to use for plugin lookup.
 81     <pluginGroup>com.your.plugins</pluginGroup>
 82     -->
 83   </pluginGroups>
 84 
 85   <!-- proxies
 86    | This is a list of proxies which can be used on this machine to connect to the network.
 87    | Unless otherwise specified (by system property or command-line switch), the first proxy
 88    | specification in this list marked as active will be used.
 89    |-->
 90   <proxies>
 91     <!-- proxy
 92      | Specification for one proxy, to be used in connecting to the network.
 93      |
 94     <proxy>
 95       <id>optional</id>
 96       <active>true</active>
 97       <protocol>http</protocol>
 98       <username>proxyuser</username>
 99       <password>proxypass</password>
100       <host>proxy.host.net</host>
101       <port>80</port>
102       <nonProxyHosts>local.net|some.host.com</nonProxyHosts>
103     </proxy>
104     -->
105   </proxies>
106 
107   <!-- servers
108    | This is a list of authentication profiles, keyed by the server-id used within the system.
109    | Authentication profiles can be used whenever maven must make a connection to a remote server.
110    |-->
111   <servers>
112     <!-- server
113      | Specifies the authentication information to use when connecting to a particular server, identified by
114      | a unique name within the system (referred to by the 'id' attribute below).
115      | 
116      | NOTE: You should either specify username/password OR privateKey/passphrase, since these pairings are 
117      |       used together.
118      |
119     --> 
120     <server>
121       <id>myserver</id>
122       <username>tomcat</username>
123       <password>123456</password>
124     </server>
125     
126     
127     <!-- Another sample, using keys to authenticate.
128     <server>
129       <id>siteServer</id>
130       <privateKey>/path/to/private/key</privateKey>
131       <passphrase>optional; leave empty if not used.</passphrase>
132     </server>
133     -->
134   </servers>
135 
136   <!-- mirrors
137    | This is a list of mirrors to be used in downloading artifacts from remote repositories.
138    | 
139    | It works like this: a POM may declare a repository to use in resolving certain artifacts.
140    | However, this repository may have problems with heavy traffic at times, so people have mirrored
141    | it to several places.
142    |
143    | That repository definition will have a unique id, so we can create a mirror reference for that
144    | repository, to be used as an alternate download site. The mirror site will be the preferred 
145    | server for that repository.
146    |-->
147   <mirrors>
148     <!-- mirror
149      | Specifies a repository mirror site to use instead of a given repository. The repository that
150      | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
151      | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
152      |
153     <mirror>
154       <id>mirrorId</id>
155       <mirrorOf>repositoryId</mirrorOf>
156       <name>Human Readable Name for this Mirror.</name>
157       <url>http://my.repository.com/repo/path</url>
158     </mirror>
159      -->
160   </mirrors>
161   
162   <!-- profiles
163    | This is a list of profiles which can be activated in a variety of ways, and which can modify
164    | the build process. Profiles provided in the settings.xml are intended to provide local machine-
165    | specific paths and repository locations which allow the build to work in the local environment.
166    |
167    | For example, if you have an integration testing plugin - like cactus - that needs to know where
168    | your Tomcat instance is installed, you can provide a variable here such that the variable is 
169    | dereferenced during the build process to configure the cactus plugin.
170    |
171    | As noted above, profiles can be activated in a variety of ways. One way - the activeProfiles
172    | section of this document (settings.xml) - will be discussed later. Another way essentially
173    | relies on the detection of a system property, either matching a particular value for the property,
174    | or merely testing its existence. Profiles can also be activated by JDK version prefix, where a 
175    | value of '1.4' might activate a profile when the build is executed on a JDK version of '1.4.2_07'.
176    | Finally, the list of active profiles can be specified directly from the command line.
177    |
178    | NOTE: For profiles defined in the settings.xml, you are restricted to specifying only artifact
179    |       repositories, plugin repositories, and free-form properties to be used as configuration
180    |       variables for plugins in the POM.
181    |
182    |-->
183   <profiles>
184     <!-- profile
185      | Specifies a set of introductions to the build process, to be activated using one or more of the
186      | mechanisms described above. For inheritance purposes, and to activate profiles via <activatedProfiles/>
187      | or the command line, profiles have to have an ID that is unique.
188      |
189      | An encouraged best practice for profile identification is to use a consistent naming convention
190      | for profiles, such as 'env-dev', 'env-test', 'env-production', 'user-jdcasey', 'user-brett', etc.
191      | This will make it more intuitive to understand what the set of introduced profiles is attempting
192      | to accomplish, particularly when you only have a list of profile id's for debug.
193      |
194      | This profile example uses the JDK version to trigger activation, and provides a JDK-specific repo.
195     <profile>
196       <id>jdk-1.4</id>
197 
198       <activation>
199         <jdk>1.4</jdk>
200       </activation>
201 
202       <repositories>
203         <repository>
204           <id>jdk14</id>
205           <name>Repository for JDK 1.4 builds</name>
206           <url>http://www.myhost.com/maven/jdk14</url>
207           <layout>default</layout>
208           <snapshotPolicy>always</snapshotPolicy>
209         </repository>
210       </repositories>
211     </profile>
212     -->
213 
214     <!--
215      | Here is another profile, activated by the system property 'target-env' with a value of 'dev',
216      | which provides a specific path to the Tomcat instance. To use this, your plugin configuration
217      | might hypothetically look like:
218      |
219      | ...
220      | <plugin>
221      |   <groupId>org.myco.myplugins</groupId>
222      |   <artifactId>myplugin</artifactId>
223      |   
224      |   <configuration>
225      |     <tomcatLocation>${tomcatPath}</tomcatLocation>
226      |   </configuration>
227      | </plugin>
228      | ...
229      |
230      | NOTE: If you just wanted to inject this configuration whenever someone set 'target-env' to
231      |       anything, you could just leave off the <value/> inside the activation-property.
232      |
233     <profile>
234       <id>env-dev</id>
235 
236       <activation>
237         <property>
238           <name>target-env</name>
239           <value>dev</value>
240         </property>
241       </activation>
242 
243       <properties>
244         <tomcatPath>/path/to/tomcat/instance</tomcatPath>
245       </properties>
246     </profile>
247     -->
248   </profiles>
249 
250   <!-- activeProfiles
251    | List of profiles that are active for all builds.
252    |
253   <activeProfiles>
254     <activeProfile>alwaysActiveProfile</activeProfile>
255     <activeProfile>anotherAlwaysActiveProfile</activeProfile>
256   </activeProfiles>
257   -->
258 </settings>
settings.xml

wpsDBB2.tmp

在 settings.xml 指定本地仓库位置

wpsDBB3.tmp

Maven 原理:   使用坐标导入jar包,先在本地仓库找,如果没有,会去网络上仓库下载 !

4、 将 repository.rar 解压,覆盖本机原来 的仓库

5、 在myeclipse 建立maven工程

  可以自己选择骨架

wpsDBB4.tmp

quickstart 骨架, javase的maven项目

webapp 骨架, javaee的maven项目

² 使用simple project 骨架

wpsDBC5.tmp

输入maven参数

坐标 : GroupId 、ArtifactId 、Version

Packing 打包方式 : jar(给别人引入的)、pom(给别人继承的)、war (用来运行的)

wpsDBC6.tmp
maven 项目结构分析

src/main/java 存放项目源码

src/main/resources 存放项目配置文件

src/test/java 存放测试用例代码

src/test/resources 存放测试配置文件

src/main/webapp 文件夹用来存放页面代码

6、 移植项目  

将源码 src/main/java

将配置文件 src/main/resources

将页面 src/main/webapp  (WEB-INF 不要移动lib,只需要pages和web.xml )

7、 编写pom.xml

使用坐标导入 jar包

wpsDBC7.tmp

只需要获取 需要项目坐标,就可以引入

http://search.maven.org/

http://mvnrepository.com/

附参考pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.hauwei.bos</groupId>
    <artifactId>mavenbos</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>war</packaging>
    <name>mavenbox</name>
    <description>XXXX管理项目</description>
    <dependencies>
        <!-- spring 3.2 -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>3.2.0.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-orm</artifactId>
            <version>3.2.0.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aspects</artifactId>
            <version>3.2.0.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-web</artifactId>
            <version>3.2.0.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>3.2.0.RELEASE</version>
        </dependency>
        <!-- Struts 2 -->
        <dependency>
            <groupId>org.apache.struts</groupId>
            <artifactId>struts2-core</artifactId>
            <version>2.3.7</version>
        </dependency>
        <dependency>
            <groupId>org.apache.struts</groupId>
            <artifactId>struts2-json-plugin</artifactId>
            <version>2.3.7</version>
        </dependency>
        <dependency>
            <groupId>org.apache.struts</groupId>
            <artifactId>struts2-spring-plugin</artifactId>
            <version>2.3.7</version>
        </dependency>
        <!-- hibernate 3.6 -->
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-core</artifactId>
            <version>3.6.10.Final</version>
        </dependency>
        <!-- JPA -->
        <dependency>
            <groupId>org.hibernate.javax.persistence</groupId>
            <artifactId>hibernate-jpa-2.0-api</artifactId>
            <version>1.0.1.Final</version>
        </dependency>
        <!-- Servlet & Jsp -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.5</version>
            <scope>provided</scope> <!-- 只在编译和测试环境下使用,不参与打包运行,默认值Runtime -->
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.0</version>
            <scope>provided</scope>
        </dependency>
        <!-- log4j -->
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-log4j12</artifactId>
            <version>1.7.2</version>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.16</version>
        </dependency>
        <!-- C3P0 -->
        <dependency>
            <groupId>c3p0</groupId>
            <artifactId>c3p0</artifactId>
            <version>0.9.1.2</version>
        </dependency>
        <!-- mysql -->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.6</version>
        </dependency>
        <!-- junit -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.9</version>
            <scope>test</scope>
        </dependency>
        <!-- poi -->
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>3.9</version>
        </dependency>
        <!-- 配置pinyin4j -->
        <dependency>
            <groupId>com.belerweb</groupId>
            <artifactId>pinyin4j</artifactId>
            <version>2.5.0</version>
        </dependency>
        <!-- 配置Hessian -->
        <dependency>
            <groupId>com.caucho</groupId>
            <artifactId>hessian</artifactId>
            <version>4.0.33</version>
        </dependency>
        
    <!-- 配置Hessian-Search -->
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-search</artifactId>
            <version>3.4.2.Final</version>
        </dependency>
        <!-- IK -->
        <dependency>
            <groupId>org.wltea</groupId>
            <artifactId>IKAnalyzer</artifactId>
            <version>2012_u6</version>
            <scope>system</scope>
            <systemPath>F:ftlmavenbox_day02srcmainwebappWEB-INFlibIKAnalyzer2012_u6.jar</systemPath>
           </dependency>
        

    </dependencies>
    <build>
        <finalName>mavenbos</finalName>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.tomcat.maven</groupId>
                <artifactId>tomcat7-maven-plugin</artifactId>
                <version>2.1</version>
            </plugin>
        </plugins>
    </build>
</project>
pom.xml

8、运行项目

右键项目 – run as --- maven build ---- tomcat:run

wpsDBC8.tmp

使用 maven tomcat plugin 1.1 进行运行

3.3. tomcat-maven-plugin 插件

早期插件 groupId : org.codehaus.mojo , artifactId : tomcat-maven-plugin  版本1.1

wpsDBD9.tmp

现在这个插件,被分为两个插件,坐标也改了

wpsDBDA.tmp

wpsDBDB.tmp

附文件:

 1 <!-- tomcat plugin 分为tomcat6 和 tomcat7 两个插件  -->
 2 <!-- http://mojo.codehaus.org/tomcat-maven-plugin/index.html  -->            
 3             <plugin>
 4                 <groupId>org.apache.tomcat.maven</groupId>
 5                 <artifactId>tomcat7-maven-plugin</artifactId>
 6                 <version>2.1</version>
 7             </plugin>
 8             <plugin>
 9                 <groupId>org.apache.tomcat.maven</groupId>
10                 <artifactId>tomcat6-maven-plugin</artifactId>
11                 <version>2.1</version>
12             </plugin>
13             
14 <!-- 早期tomcat maven plugin 使用  -->            
15             <plugin>
16                 <groupId>org.codehaus.mojo</groupId>
17                 <artifactId>tomcat-maven-plugin</artifactId>
18                 <version>1.1</version>
19                 <configuration>
20                     <!-- tomcat6.x -->
21                     <url>http://localhost:8080/manager</url>
22                     <!-- tomcat7.x -->
23 <!--                     <url>http://localhost:8080/manager/text</url> -->
24                     <server>myserver</server>
25                 </configuration>
26             </plugin>
27 
28 远程访问 tomcat6 : tomcat-users.xml
29     <role rolename="manager"/>
30        <user username="tomcat" password="123456" roles="manager"/>    
31 
32 远程访问 tomcat7 : tomcat-users.xml
33     <role rolename="manager-gui"/>
34     <role rolename="manager-script"/>
35     <user username="tomcat" password="123456" roles="manager-gui, manager-script"/>
36     
37     
maven tomcat plugin

3.3.1. 修改内部运行 tomcat的端口

<!-- 对插件进行配置 -->

<configuration>

<port>80</port>

</configuration>

原文地址:https://www.cnblogs.com/ftl1012/p/maven.html