
Originally Posted by
spgmx
I had still a commons-lang.jar < V 2.3 in my webapps lib path, this caused the handler not to load under Java 1.6. My unit test suite had already the correct jar.
Solved

Thanks for the info!
I now see
Code:
WARN 10.05 12:30:34:428 (AnnotationBeanValidationConfigurationLoader.java:handleMethodAnnotations:203) - No hanlder is defined for annotation 'org.springmodules.validation.bean.conf.loader.annotation.handler.NotNull'... Annotation will be ignored...
WARN 10.05 12:30:34:433 (AnnotationBeanValidationConfigurationLoader.java:handleMethodAnnotations:203) - No hanlder is defined for annotation 'org.springmodules.validation.bean.conf.loader.annotation.handler.NotNull'... Annotation will be ignored...
also when running the testcases. I know I wrote earlier that I only saw this when running the app not the testcases. I might have looked in the wrong log or done some other mistake when chaing the logs.
Anyway.. I see this warning both when running the testcases and the app using resin or jetty.
i'm on java 1.5.0_07 on osx and are using commons-lang 2.3.
My classpath is
Code:
repository/antlr/antlr/2.7.6/antlr-2.7.6.jar
repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar
repository/asm/asm-attrs/1.5.3/asm-attrs-1.5.3.jar
repository/asm/asm/1.5.3/asm-1.5.3.jar
repository/aspectj/aspectjrt/1.5.3/aspectjrt-1.5.3.jar
repository/aspectj/aspectjweaver/1.5.3/aspectjweaver-1.5.3.jar
repository/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.jar
repository/cglib/cglib/2.1_3/cglib-2.1_3.jar
repository/com/sun/jndi/nis/1.2.1/nis-1.2.1.jar
repository/com/sun/jndi/providerutil/1.2.1/providerutil-1.2.1.jar
repository/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar
repository/commons-collections/commons-collections/3.2/commons-collections-3.2.jar
repository/commons-digester/commons-digester/1.7/commons-digester-1.7.jar
repository/commons-lang/commons-lang/2.3/commons-lang-2.3.jar
repository/commons-logging/commons-logging/1.1/commons-logging-1.1.jar
repository/commons-validator/commons-validator/1.3.0/commons-validator-1.3.0.jar
repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar
repository/javax/activation/activation/1.1/activation-1.1.jar
repository/javax/mail/mail/1.4/mail-1.4.jar
repository/javax/persistence/persistence-api/1.0/persistence-api-1.0.jar
repository/javax/servlet/servlet-api/2.3/servlet-api-2.3.jar
repository/javax/transaction/jta/1.0.1B/jta-1.0.1B.jar
repository/junit/junit/4.3.1/junit-4.3.1.jar
repository/ldapjdk/ldapjdk/4.1/ldapjdk-4.1.jar
repository/log4j/log4j/1.2.14/log4j-1.2.14.jar
repository/logkit/logkit/1.0.1/logkit-1.0.1.jar
repository/net/sf/ehcache/ehcache/1.2.3/ehcache-1.2.3.jar
repository/org/easymock/easymock/2.2/easymock-2.2.jar
repository/org/freemarker/freemarker/2.3.10/freemarker-2.3.10.jar
repository/org/hibernate/hibernate-annotations/3.2.1.ga/hibernate-annotations-3.2.1.ga.jar
repository/org/hibernate/hibernate/3.2.3.ga/hibernate-3.2.3.ga.jar
repository/org/springframework/spring-aspects/2.0.4/spring-aspects-2.0.4.jar
repository/org/springframework/spring-beans/2.0.4/spring-beans-2.0.4.jar
repository/org/springframework/spring-context/2.0.4/spring-context-2.0.4.jar
repository/org/springframework/spring-core/2.0.4/spring-core-2.0.4.jar
repository/org/springframework/spring-dao/2.0.4/spring-dao-2.0.4.jar
repository/org/springframework/spring-hibernate3/2.0.4/spring-hibernate3-2.0.4.jar
repository/org/springframework/spring-jdbc/2.0.4/spring-jdbc-2.0.4.jar
repository/org/springframework/spring-mock/2.0.4/spring-mock-2.0.4.jar
repository/org/springframework/spring/2.0.4/spring-2.0.4.jar
repository/org/springmodules/spring-modules-validation/0.8a/spring-modules-validation-0.8a.jar
repository/oro/oro/2.0.8/oro-2.0.8.jar
repository/postgresql/postgresql/8.1-407.jdbc3/postgresql-8.1-407.jdbc3.jar
repository/rhino/js/1.6R2/js-1.6R2.jar
repository/uio-common/uio-common/1.2.11beta1/uio-common-1.2.11beta1.jar
repository/uio-ldap/uio-ldap/1.4.7/uio-ldap-1.4.7.jar
repository/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.jar
Copy/paste from the output when the app startes.
-Kaj