本月博客排行
-
第1名
龙儿筝 -
第2名
flashsing123 -
第3名
xiaoxinye - e_e
- java_doom
- johnsmith9th
- gaochunhu
- sichunli_030
- zw7534313
- 深蓝传说
年度博客排行
-
第1名
宏天软件 -
第2名
龙儿筝 -
第3名
青否云后端云 - wallimn
- vipbooks
- gashero
- wy_19921005
- benladeng5225
- fantaxy025025
- zysnba
- e_e
- javashop
- sam123456gz
- tanling8334
- arpenker
- kaizi1992
- xpenxpen
- lemonhandsome
- xiangjie88
- ganxueyun
- xyuma
- wangchen.ily
- jh108020
- Xeden
- johnsmith9th
- zxq_2017
- zhanjia
- jbosscn
- forestqqqq
- lzyfn123
- ajinn
- daizj
- wjianwei666
- ranbuijj
- 喧嚣求静
- sichunli_030
- kingwell.leng
- silverend
- lchb139128
- kristy_yy
- lich0079
- jveqi
- java-007
- sunj
- yeluowuhen
- lerf
- lstcyzj
- flashsing123
- lxguy
- zhangjijun
最新文章列表
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 ...