//更改镜像库
在<mirrors>元素里面加一个<mirror>配置
<mirror>
<id>aliyun</id>
<mirrorOf>centeral</mirrorOf>
<name>aliyun mirror</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</mirror>
在<profiles>中加一个<profile>配置
<profile>
<id>aliyun</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>aliyun</id>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>aliyun</id>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</pluginRepository>
</pluginRepositories>
</profile>
//配置默认 JDK 版本
方法一:
在 maven 的配置文件 settings.xml 中的标签里添加如下代码,设置默认 JRE 编译版本为 1.7
<profile>
<id>jdk-1.7</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.7</jdk>
</activation>
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>
</properties>
</profile>
方法二:在 pom.xml 的中添加如下代码,修改 maven 默认的 JRE 编译版本,1.7 代表 JRE 编译的版本
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
<plugin>
//创建 Kitchen 项目
mvn archetype:generate -DgroupId=com.netease.restaurant -DartifactId=Kitchen -Dpackage=com.netease -Dversion=1.0.0-SNAPSHOT -DarchetypeArtifactId=maven-archetype-quickstart
//创建 Restaurant
mvn archetype:generate -DgroupId=com.netease.restaurant -DartifactId=Restaurant -Dpackage=com.netease -Dversion=1.0.0-SNAPSHOT -DarchetypeArtifactId=maven-archetype-webapp
//maven 工程和 java 工程转换
mvn eclipse:eclipse
或
mvn eclipse:myeclipse
eclipse 中转换
maven 工程转为一般工程:工程右键-->Maven-->Disable Maven Nature 转为一般工程
一般工程转为 maven 工程:工程右键-->Configure-->Convert to maven project
//查看帮助
mvn help:describe -Dplugin= -Dgoal= -Ddetail=true
mvn help:help -Ddetail=true
mvn help:describe -Dplugin=war
或者
mvn help:describe -Dplugin=org.apache.maven.plugins:maven-war-plugin
或者
mvn help:describe -DgroupId=org.apache.maven.plugins -DartifactId=maven-war-plugin
//修改 tomcat 的 context path
Tomcat 自身可以通过修改配置文件 server.xml,在和之间插入如下语句:
<Context path="/xxxx" docBase="F:\xxxx\WebRoot" debug="0" privileged="true"> </Context>
对应 maven 的 tomcat 插件弄法如下:
<!-- tomcat 7 -->
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.0-SNAPSHOT</version>
<configuration>
<path>${context.path}</path>
<url>http://localhost:8080/manager/text</url>
<server>tomcat7</server>
<username>admin</username>
<password>admin</password>
</configuration>
</plugin>
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于