赞
踩
Maven
配置本地仓库(在文件里的50行左右)
<localRepository>E:\Maven_Deom</localRepository>
配置阿里云镜像(在文件里的150行左右)
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
IDER构建maven项目
1. 用idea构建maven项目.
1. 配置windows环境下的maven.
1. 配置MAVEN_HOME并指定到PATH中
2. 指定maven本地仓库的路径.
3. 指定阿里云仓库镜像. 150行左右.
2. 安装idea并破解.
1. 在官网下载时,选择左侧的下载.
2. http://idea.lanyus.com/ 破解.
3. 将0.0.0.0 account.jetbrains.com配置到本地的hosts文件中.
C:\windows\System32\drivers\etc\hosts
4. 点击页面中获取注册码.
5. 复制到Code中.
3. 创建maven项目.
1. new Project.
2. 选中左侧的maven -> next.
3. 写项目的包名,项目名,版本号. -> next
4. 指向项目的名称和项目坐在目录. -> finish
4. 配置maven在idea中的环境.
1. file -> settings.
2. 搜索maven. -> 选中maven
3. 配置右侧的 MAVEN HOME settings文件.
5. 打开maven项目所在的上一级目录.
1. file -> open.
2. 选中项目所在的上一级目录.
3. 右侧选项卡,maven projects +
6. 给maven项目添加web.xml
1. 修改maven项目pom.xml的<packaging>war</packaging>
2. 选中项目,Ctrl + Alt + Shift + s
3. 指定SDK.
4. 选中左侧中的 facets
5. 点击右上角的 + . -> web.xml
6. 3.1版本的web.xml,并且按照下面的提示,手动在项目名后添加 \src\main\webapp
7. 点击ok.
在电脑的 C:\Windows\System32\drivers\etc
作用:网址访问的时候先进hosts中查找DNS好(如:192.168.33.33) 然后在去DNS服务器。(DNS码就可以进去网址)如果找不到就一直转告诉我们404
<!--修改成为war文件-->
<packaging>war</packaging>
<!--1.两个插件,
jdk1.8编译版本插件.
tomcat7的插件
2.两个resources.
让maven项目在部署的时候,可以加载
java目录和resources目录下的.xml和.properties文件
-->
<build>
<plugins>
<!-- jdk1.8编译插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<!-- tomcat插件 -->
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<path>/</path>
<port>80</port>
<uriEncoding>UTF-8</uriEncoding>
</configuration>
</plugin>
</plugins>
<resources>
<!-- 使用Maven部署的时候,xml和properties配置文件也一起部署到Tomcat -->
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</build>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。