本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
- sichunli_030
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- e_e
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- johnsmith9th
- luxurioust
- lzyfn123
- zhanjia
- forestqqqq
- ajinn
- nychen2000
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
- jveqi
- java-007
- sunj
最新文章列表
maven-compiler-plugin插件指定编译
最近拿到一个maven系统,需要使用jdk1.8的环境才能运行(公司开发使用jdk1.7),于是下载、安装jdk1.8。
安装完成之后(本人使用idea工具),打开module settings,设置里面的Modules->Dependencies->module sdk为安装好的1.8版本,同时还得设置Modules->Dependencies->sources模 ...
mven工程修改JDK版本
<profiles>
<profile>
<id>jdk-1.7</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.7</jdk>
</activation&g ...
maven使用技巧
1、pom打jar包的时候设置MANIFEST.MF的key/value,可以通过在pom.xml文件中添加plugin的方式来实现,这些plugin都在<project><build><plugins>下边:
<plugin>
<artifactId>maven-jar-plugin</artifactId> ...
Version 1.5.0_10 of the JVM not suitable for this product.
Version 1.5.0_10 of the JVM not suitable for this product.Version1.6 or greater is requires.
Version 1.3 of the JVM not suitable for this product.Version1.4 or greater is requires.
在这里把我所遇到的版本问题总结一下 ...
java.lang.UnsupportedClassVersionError: Bad version number in .class file
出现这个问题时,说明你工程的JDK和tomcat所用的JDK
不一致了,解决办法如下:
1、在当前工程上点右键选择"属性",进去后在Java build path看用的jdk版本。
2、进到当前工程的属性后,选择"Java Compiler"进去后将"Compiler Compliance level"改成当 ...
如何查看项目使用的Eclipse版本和Jdk的版本
如何查看项目使用的Eclipse版本:
法1:在Eclipse的安装目录下有.eclipseproduct文件,里面就有Eclipse的version(版本)信息
法2:Eclipse的目录中有个readme的文件夹,里面有个html文件就可以看到当前eclipse的版本信息。
如何查看Eclipse项目使用的Jdk的版本
法1 :同样可以在运行 Eclip ...