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