m2eclipse jre or jdk problem

m2eclipse遇到Unable to locate the Javac Compiler in:
C:\Program Files \Java\jre6\..\lib\tools.jar Please ensure you are using JDK 1.4 or above and not a JRE (the com.sun.tools.javac.Main class is required). In most cases you can change the location of your Java installation by setting the JAVA_HOME environment variable.

一切都是照官方的说明,设置eclipse.ini与jvm。

先是参照这里
http://stackoverflow.com/questions/2222560/build-failed-question-maven-jre-or-jdk-problem
发现根本不起作用

window-->perference-->java-->install jres
勾选的确实是jdk,但排在第一位的仍然是 C:\Program Files ...
删除该项,ok

编译时遇到 编码 GBK 的不可映射字符 错误
添加
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
仍然没有用,最后在maven-compiler-plugin中添加<encoding>utf8</encoding>
得以解决
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<encoding>utf8</encoding>
</configuration>
</plugin>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值