Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hello All We are using JSF2 in weblogic11g migrated from Tomcat6 , we have JSF field validations in backing beans using Javax.validation package and org.hibernate.validator package ... Example:

 @NotBlank(message="{annualIncome.blank}")
        @Pattern(regexp = "(^[1-9][0-9]{0,5}){0,6}", message="{annualIncome.invalid}")
        private String income;

Everything was working fine in Tomcat6 , migrated to weblogic11g , but all these validations are never getting called ,there is no deployment error though .

Any help would be appreciated.

Thanks Vijay

share|improve this question
I have run into similar problems as well migrating between different application servers. Many of them have their own Mojarra implementations and load these on the classpath over anything that you would place into WEB-INF\lib. I would look to see if WebLogic has an older or newer version of Mojarra bundled that might be causing problems. – maple_shaft May 3 '11 at 18:46
Thanks for the info , is it true even for javax.validation package which comes from JDK6? – user684434 May 3 '11 at 18:53
I could solve this by providing the jar in the ear file.Thanks for the help. – user684434 May 3 '11 at 19:17

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.