| 
					
						 hi, 
 
 i using hibernate tool ver 3.2.4.CR2  in eclipse to build hibernate configuration.
 
 but i had encounter an exception:
 
 java.lang.annotation.AnnotationTypeMismatchException: Incorrectly typed data found for annotation element public abstract boolean org.hibernate.search.annotations.FullTextFilterDef.cache() (Found data of type Lorg/hibernate/search/annotations/FilterCacheModeType;.NONE)
 
 one of my class that contain look like this:
 
 @Indexed
 	@FullTextFilterDef(name = "modifiedDate", impl = DateFilterFactory.class, cache=FilterCacheModeType.NONE)
 	})
 public class Item   {
    ...
 }
 
 the exception cause by this "cache=FilterCacheModeType.NONE", if remove this evething will be ok.
 
 not sure is it a bug ?
 
 any idea ?
 
 kiwi 
											 _________________ happy hacking !
					
  
						
					 |