maven3安装和使用笔记

一、下载java

http://maven.apache.org/download.cgiweb

二、解压spring

三、配置环境变量apache

M2_HOME  D:\program\apache-maven-3.3.3app

Path :  %M2_HOME%\binjsp

四、验证是否成功maven

打开命令行窗口,输入mvn -version,显示版本号,则安装成功ide

我这里遇到了错误: Unsupported major.minor version 51.0网站

这个是jdk版本太低形成的,maven3 要求至少jdk7,。插件

修改JAVA_HOME指向jdk1.7或者1.8,这个时候再执行mvn -v命令,仍是同样的错误提示,重开命令行,从新执行,问题解决。

五、maven的仓库地址是在D:\Program\apache-maven-3.0.4\conf 下的settings.xml 里面配置的,
    属性名是localRepository
     默认地址是:D:\个人文档\.m2\repository
     上面的路径是我本身的电脑里的配置

     新安装的3.3.9版,默认地址是C:\Users\he\.m2

六、执行run as-maven install时报错

-Dmaven.multiModuleProjectDirectory system propery is not set. Check $M2_HOME environment variable and mvn script match.

检查环境变量已经配置了,在控制台输入mvn命令也有效。

解决办法是修改MyEclipse的配置,

在Window->Preference->Java->Installed JREs->Edit

在Default VM arguments中设置

-Dmaven.multiModuleProjectDirectory=$M2_HOME

七、能够在maven网站上选择jar包,并自动生成pom.xml里的配置,复制便可

地址:http://search.maven.org/

八、在MyEclipse中建立maven项目以后报下面的错误

Failure to transfer org.codehaus.plexus:plexus-io:jar:1.0 from http://repo1.maven.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original error: Could not 
 transfer artifact org.codehaus.plexus:plexus-io:jar:1.0 from/to central (http://repo1.maven.org/maven2): No response received after 60000

 

这个错误是更新jar包失败,解决办法是去本地仓库删掉对应的包,而后在项目上点击右键->Maven4MyEclipse->Update Dependencies ,若是报其余的包更新失败,也采起一样的办法

九、在命令行中想要操做指定的项目,须要首先进入须要构建的项目目录,而后执行mvn的相关命令。

十、将jar包部署到jboss的方法

首先配置jboss的plugin,在pom.xml中添加如下语句

   <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>jboss-maven-plugin</artifactId>
    <version>1.5.0</version>
    <configuration>
     <jbossHome>E:\Program\jboss-eap-5.0\jboss-as</jbossHome>
     <serverName>default</serverName>
    </configuration>
   </plugin>

 

而后在项目目录下执行命令

 mvn clean install jboss:hard-undeploy jboss:hard-deploy jboss:start

 

十一、No persistence.xml file found in project

解决办法:psersistence.xml要放在META-INF下面

十二、The method setApplicationContext(ApplicationContext) of type ApplicationContextUtils
 must override a superclass method
解决办法:将jdk版本从1.5换成1.6

1三、使用maven构建项目时报错:gbk的不可映射字符

解决办法:在编译插件上添加配置项<encoding>utf8</encoding>,详细代码以下

   <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>2.3.1</version>
    <configuration>
     <source>1.6</source>
     <target>1.6</target>
     <encoding>utf8</encoding>
    </configuration>
   </plugin>

 

1四、Can not find the tag library descriptor for “http://java.sun.com/jsp/jstl/core”

明明已经引入了jstl包,可是仍是报这个错误

解决办法:把jstl的依赖删除从新加入就行了

1五、VERSION OF SPRING FACET COULD NOT BE DETECTED.
The migration process needs to detect the correct version of Spring support used by a project. If the process fails to detect the version based on containers used by the project, it tries to read it from the .springBeans file. If the file is missing, the migration process is unable to continue.

You need to manually create the file in the root of the project, before invoking the Migration wizard. To do so, right-click the project, and select New>File from the menu. Enter .springBeans as the file name, and click Finish. The .springBeans file editor should open. Paste the following code into it, and save the file.

<?xml version="1.0" encoding="UTF-8"?>
<beansProjectDescription>
  <springVersion>2.0</springVersion>
</beansProjectDescription>

Now you can rerun the migration process by selecting MyEclipse>Migrate Projects from theMyEclipsemenu, or run the process from the Project Migration view.

Note: The .springBeans file might not appear in the Package Explorer view; you will need to disable the.* resources filter to see it. To do so, click the white triangle (View menu) in the top-right corner of the Package Explorer view and select Filters. Next, deselect the .* resources filter, and click OK. You should now be able to see the .springBeans file.

1六、webrootkey已经注册

解决办法,在web.xml文件里添加参数

<context-param>
 <param-name>webAppRootKey</param-name>
 <param-value>cmes_web.root</param-value>
</context-param>

 

 1七、pom.xml中使用环境变量

    <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>jboss-maven-plugin</artifactId>
    <version>1.5.0</version>
    <configuration>
     <jbossHome>${env.JBOSS_HOME}</jbossHome>
     <serverName>default</serverName>
    </configuration>
   </plugin>
相关文章
相关标签/搜索