AnnotationTransactionAttributeSource is only available on Java 1.5 and higher

是否使用了spring? spring版本较低?

SPRING2.5版本可能不支持1.8的jdk,可能新版本有修复吧,

总而言之就是1.8的JDK太高了,SPRING支持不了,

修改方法也很简单,右键项目--》BUILD PATH--》Config Build 
Path--》Libraries-->Jre System Library--》Edit--》然后选择后面小括号里面标注为1.7!
另外右键项目--》Java Compiler 中选中“Enable project specific settings", 然后 compiler compilance leve 选 1.7
时间: 2024-10-06 00:40:21

AnnotationTransactionAttributeSource is only available on Java 1.5 and higher的相关文章

报异常:AnnotationAwareAspectJAutoProxyCreator is only available on Java 1.5 and higher

项目启动时候报异常 1,异常信息 信息: Initializing Spring root WebApplicationContext2017-09-07 17:20:44 [org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:189)]-[INFO] Root WebApplicationContext: initialization started2017-09-

手动整合ssh框架时的各种错误

因为自己配置时jar包版本不太对,AOP包不能用,因此声明事物管理无效,只能手动在方法中声明 1.报:AnnotationTransactionAttributeSource is only available on Java 1.5 and higher错误,错误的意思是注解式事物声明仅仅支持1.5及以上的jdk,言下之意为你的jdk版本过低, 实际上根本不是这回事,是因为用了1.8的jdk,及jdk版本太高,这在较低版本的Spring中会出现这种错误,要解决要么用最新的Spring,要么降低

atitit.bsh BeanShell 的动态脚本使用java

atitit.bsh BeanShell 的动态脚本使用java 1.1. BeanShell是一个小巧免费的JAVA源码解释器 ,支持对象式的脚本语言特性,亦可嵌入到JAVA源代码中. 亦可嵌入到JAVA源代码中,能动态执行JAVA源代码并为其扩展了脚本语言的一些特性,像JavaScript和perl那样的弱类型.命令式.闭包函数等等特性都不在话下 BeanShell能理解标准的JAVA语句,表达式,和方法宣告.语句和表达式的内容可以是:变量,宣告,赋值,方法调用,循环,条件等.在 Java程

搭建Java Web项目问题总结

?1.Target runtime com.genuitec.runtime.generic.jee60 is not defined.? 解决方案是:在工程目录下的.settings文件夹里,打开org.eclipse.wst.common.project.facet.core.xml文件,其内容为: <?xml version="1.0" encoding="UTF-8"?> 2 <faceted-project> 3   <run

selenium docs

Note to the Reader - Docs Being Revised for Selenium 2.0! Introduction Test Automation for Web Applications To Automate or Not to Automate? Introducing Selenium Brief History of The Selenium Project Selenium’s Tool Suite Choosing Your Selenium Tool S

Deploying JRE (Native Plug-in) for Windows Clients in Oracle E-Business Suite Release 12 (文档 ID 393931.1)

In This Document Section 1: Overview Section 2: Pre-Upgrade Steps Section 3: Upgrade and Configuration Section 4: Post-installation Steps Section 5: Known Issues Section 6: Appendices This document covers the procedure to upgrade the version of the J

安卓环境注意事项

这两天一直在配置环境问题,我总结出一个方法就是(不懂的地方一定要好好查百度谷哥,千万别蒙混过关,因为开始的时候会遇到好多问题)出现了如下问题: 在安装eclipse的时候,我发现我不清楚选择哪个版本的开发工具,后来选择了luna这个版本来进行开发,同时我发现外国人对这个版本命名的方法就是用人名来区分的.一张图就知道什么情况了. 但是在网上查询之后,eclipse的版本最后是选择juno和indigo这两个版本比较好,因为越是大的版本相反他对电脑的配置要求也是很高的.所以,建议不升级eclipse

整理eclipse,升级jdk环境小记录

这2天在整理项目: 需要把eclipse 32位,jdk1.6 32位的更改为eclipse 64位,jdk1.8 64位版本的,于是我就在一台window7的电脑上直接操作,遇到了一下几点问题,记录一下: 一台电脑上可以装多个版本的IDE工具,我就装了eclipse 32位的,eclipse64位的,还有myeclipse 64位的(近期整理桌面卸载了) 原本jdk是1.6 32位的,后期装了1.8 64位的(这说明电脑支持多版本的jdk运行环境,分别装在不同的文件夹下面,方便切换) 使用jd

How to stop a Thread(怎样停止一个线程)

Abstract How to stop a Thread is a perannual question for Java programmers. Finally with the release of Java V5.0 (or V1.5), which incorporates java.util.concurrent, a definitive answer can be given. The answer is you stop a thread by using interrupt