Test is not an annotation type 异常

1. 异常如下:

今天遇到了这个错,也是郁闷了。

提示Test不是一个注释类型:

2. 异常分析:

刚开始以为自己把 Test 拼写错了;

后来以为版本有问题,所以又换成低版本的。

不行!!!

后来才发现,同包下有一个自定义的类,类名为 Test。

3. 解决方案

把同包下名为Test的类改名为Demo,OK。

时间: 2024-12-15 03:22:58

Test is not an annotation type 异常的相关文章

The attribute required is undefined for the annotation type XmlElementRef

异常描述: 几天没用的项目导进Eclipse中发现有异常 public class BooleanFeatureType extends FeatureBaseType{ @XmlElementRef(name = "Value", namespace = "http://schemas.sean.com/ma/CA/OPM/", type = JAXBElement.class, required = false) protected JAXBElement<

CXF wsdl2java : The attribute required is undefined for the annotation type XmlElementRef

cxf 根据wsdl 文件生成客户端Java类 下载:apache-cxf-2.7.5 1.打开cmd 进入 apache-cxf-2.7.5\bin 2.输入 wsdl2java -p "生成类的包名" - client "wsdl地址" 例如:(wsdl2java.bat -frontend jaxws21  -p "com.test" -client  "http://192.168.3.105/services/Msp?wsdl

Annotation Type @bean,@Import,@configuration使用--官方文档

@Target(value={METHOD,ANNOTATION_TYPE}) @Retention(value=RUNTIME) @Documented public @interface Bean Indicates that a method produces a bean to be managed by the Spring container. Overview The names and semantics of the attributes to this annotation

使用CGlib出现java.lang.NoClassDefFoundError: org/objectweb/asm/Type异常【补充】

援引:使用CGlib出现java.lang.NoClassDefFoundError: org/objectweb/asm/Type异常 援引:class net.sf.cglib.core.DebuggingClassWriter has interface org.objectweb.asm.ClassVisitor as super class 源环境: IDE:IntelliJ IDEA 项目目的:测试动态代理 -- CGLIB 项目属性:Java Application 项目结构: 被

Request for the permission of type异常

调用wcf调用的时候引发一个错误,错误信息如下: <Message>Request for the permission of type 'System.Configuration.ConfigurationPermission, System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' failed.</Message> <StackTrace> a

org/objectweb/asm/Type异常解决办法

整合SSH的时候遇到了org/objectweb/asm/Type 解决方法1: 原因是Spring中的cglib-nodep-2.x.x.jar与Hibernate中的cglib-2.2.jar相冲突! 两种框架整合时Spring中的cglib-nodep-2.x.x.jar是必须的,取消Hibernate中的cglib-2.2.jar即可 解决方法2: 在Hibernate 3.2.6.中的 cglib 是 cglib-2.1.3.,jar 使用 cglib-2.2.jar 则出现以上问题.

Annotation Type JsonFormat

最近在调试接口时发现:接口传递过来的jSON数据格式中时间格式是字符串的形式: {"name":"满300送50", "merchantId":"1", "needMoney":"100", "money":"50", "useMoney":"300", "beginDatetime":&

Java Annotation 机制源码分析与使用

1 Annotation 1.1 Annotation 概念及作用      1.  概念 An annotation is a form of metadata, that can be added to Java source code. Classes, methods, variables, parameters and packages may be annotated. Annotations have no direct effect on the operation of the

23. Spring 事务注解@Transactional和异常捕获

一. 事务注解限制条件 1. 不允许在private方法上面 2. 不能在非事务方法里面调用事务方法 二. 实现机制-异常捕获 Describes transaction attributes on a method or class. This annotation type is generally directly comparable to Spring's org.springframework.transaction.interceptor.RuleBasedTransactionA