1
vote
0answers
10 views

Validation annotations without effect

I have a bean with a filed of type Set which is annotated with @NotNull and @Size(min=1) @NotNull @Size(min=1) @ManyToMany private Set< Room > affectedRooms; and this is the corresponding ...
0
votes
0answers
13 views

@SkipValidation only for one parameter

I have define the following validators: @Validations( customValidators = { @CustomValidator(fieldName="campaignId", type="long", key="campaign.required", ...
0
votes
1answer
30 views

Java - Custom/standard validation with Annotations

I'm using annotations in a project. The thing is i'm making custom validation that (partly) depends on annotations. I'm also making own annotations, but I want to use as much as I can from the JSR 303 ...
1
vote
1answer
77 views

Spring 3 form validation shows error messages but field name not displayed

I have a 2 item form, that requires that both fields be entered. I'm using annotated validations, and am getting error messages, but they do not print the field name, just "may not be blank" instead ...
0
votes
1answer
75 views

Symfony + Doctrine + Annotation validation not work in forms

I'm using doctrine annotations in my entities definition to define each variable behavior, i.e.: @ORM\Column(type="string", length=50, nullable=false) If I submit the form leaving the field empty, ...
1
vote
1answer
78 views

How can I get the annotated value in java?

I am trying the @Pattern annotation for validating input @Pattern(regexp="[A-Za-z0-9_.]*", message="Name can only contain alphanumeric characters and underscores and dots") public String ...
0
votes
2answers
167 views

spring validation annotations being ignored when using custom validator

I am trying to incorporate annotated validation rules along with some custom validation. I have a details entity which looks like the following: public class DetailsEntity { ...
0
votes
1answer
108 views

Should I use Hibernate Validator inside setters for validation?

I understand that validation is required at several layers of an application. But, if the validations to be imposed are same across all the layers (which is the case most of the time), it makes sense ...
4
votes
1answer
82 views

How to enforce a validation constraint on an Embeddable entity property?

I have a Person entity with an Email collection property: @ElementCollection @CollectionTable(schema="u",name="emails",joinColumns=@JoinColumn(name="person_fk")) @AttributeOverrides({ ...
1
vote
1answer
214 views

Validation Not Working on Nested Objects in Play Framework 2

I'm using the Constraint annotations for validating my objects in Play! framework 2. It works fine for top level objects, but not nested ones. How do I get my nested object validation annotations to ...
0
votes
0answers
47 views

Using javax.validation without turning into beans

First of all ... I am developing a web app with servlets/JSP using Spring framework. I'd like to validate parameters come from requests before passing them into objects and store in my database. As ...
0
votes
1answer
79 views

Symfony2 + Doctrine2: Is it possible to interact with validation annotations within an Entity setter?

I have an Entity which i have decorated using validation annotations like this: use Symfony\Component\Validator\Constraints as Assert; class Entity { /** * @Assert\MaxLength(100) */ ...
2
votes
2answers
55 views

Annotation Validation not working

Please help me on the following code. The Model class is using System.ComponentModel.DataAnnotation: namespace Proj.Models { public class Customer { [Required] public string ...
3
votes
1answer
211 views

Adding validation to model with Database First model (EF 5)

I know how to add validation errors to the model state. I know how to add the validation annotations to my model classes. The problem is that with Database first, I don't want to touch the generated ...
0
votes
2answers
126 views

How to validate bean property injected with @ManagedProperty without xml?

I've found a lot of topics discussing how to inject property but none of them suggests validation method. Here is my bean: @ManagedBean @RequestScoped public class MyBean { ...
1
vote
0answers
292 views

Custom annotation for validation and Spring [closed]

I am quite new to custom annotations and facing an issue where I know something is missing, but quite not sure what it is. A pointer would be helpful. I am trying to create a Custom Constraint ...
1
vote
1answer
869 views

SpringMvc - javax.validation.ValidationException

I am using Spring 3.0. I am not using hibernate or maven dependencies. I have downloaded the jar files and added it to my classpath. I am receiving a javax.validation.ValidationException. After ...
0
votes
1answer
2k views

Spring MVC 3 form validation annotations ignored?

I was learning how to make simple form validation using this tutorial: http://www.raistudies.com/spring/spring-mvc/form-validation-spring-mvc-3-hibernate-validator-jsr-303/ The problem is, when I'm ...
0
votes
1answer
224 views

Struts 2 Conditional Annotation Validation without XML

I have a form with several fields (i.e. a,b,c,d,...) and the project I am currently doing right now is using Annotations for form validation in Struts2. XML usage is being discouraged. I need to ...
0
votes
1answer
127 views

are validation annotations deprecated in strut2?

I read from here https://cwiki.apache.org/WW/annotations.html that Annotation are deprecated and changed by Conventions plugin. I noted that documentation that Convention plugin still use ...
0
votes
1answer
266 views

Duplicate annotation - hibernate validator

I would like to use one hiberante validator annotation multiple times on one property. e.g: @Length(min = 10, max = 10, groups = {Lenght10Group.class}) @Length(min = 5, max = 5, groups = ...
-1
votes
2answers
432 views

How validate a spring's bean property with annotation? [closed]

I have a Java server application using complex spring context. I'd like to protect an editor of xml file with spring context definition from mistakes. I want that spring would validate beans with ...
1
vote
2answers
329 views

Spring Annotation Based Form Validation

I'm using Springs annotations based form validation (mainly @NotBlank and @Length) which works great. I'm passing the formbean into the validation method like so: validate(formBean, result); I have ...
1
vote
2answers
808 views

difference between @size(max = value ) and @min(value) @max(value)

I want ot do some domain validation in my object i am having one integer , now my question is if i write @Min(SEQ_MIN_VALUE) @Max(SEQ_MAX_VALUE) private Integer sequence; and @Size(min = 1, ...
0
votes
1answer
115 views

Javax validation, validate an object's property with annotations

Let's say I have the following classes : public class MyProductCode { private String code; // getter and setter } public class MyProduct { @NotNull private MyProductCode myCode; ...
-1
votes
1answer
207 views

Exception No form element was specified for “title” and one not be determined automatically from “Spiffy\Zend\Form”

In addtion to my previous question Attache zend filters and validation chains to models/doctrine entities I have given a try to Spiffy framework, but I got stack with this exception like this: ...
1
vote
1answer
91 views

asp.net mvc - how do I validate a checkbox?

I've found the model annotations very useful for the validation in MVC but can't seem to get it working for a checkbox. I am using MVC 3 with razor and c#. Thanks
1
vote
1answer
177 views

How can I validate a field of a object on my domain object in Spring MVC?

I have an object Foo that holds a reference to object Bar that has a reference to object Baz, and in order for Foo to be valid, Bar has to have a valid, non-null reference to Baz. The problem is that ...
0
votes
1answer
442 views

MVC3 unobtrusive validation without data annotations

I need to create html in MVC3 from dynamic content. My scenario is that I need to create a view that can change the html fields that it displays depending on the user and circumstances. The possible ...
0
votes
1answer
253 views

Custom Validation Attribute using Reflection?

I want to use the System.ComponentModel.DataAnnotations assembly to validate arguments (mapped to properties) for a console app I'm working on. I'll be using the "buddy class" metadata pattern; it's ...
5
votes
1answer
684 views

And / Or condition in Spring annotation based validation

I am using Spring 3 annotation based validation. I want to add a following validation for String fields Field can be Null OR it should contain a non empty string I know annotation like ...
2
votes
1answer
1k views

Symfony2 & Annotations & Choices Validation: How to store and retrieve choices options?

I have a dynamic list of choices to display in a form and I just want to maintain them in one place, as these are not the only datasets I have to care for. To validate those choices in the Entity ...
0
votes
1answer
1k views

Struts2 list validation

I am trying to validate a list of object on Struts2. Suppose you had a class called INVOICE. It has 3 properties called: product, quantity, price And I have a list of INVOICE called INVOICES. In ...
0
votes
1answer
259 views

unit test struts2 annotation validation without configuration files

i want to unit test my validation defined with annotation. but it should be light. without loading any configuration files. i'm rather new to struts2 so i'm not sure if it is even possible. i have ...
2
votes
1answer
738 views

Doctrine 2.1 abstract entity, validation using annotations

My name is Denis and I really need your help or advice or anything :) I am developing my project in Zend Framework 1.11 and am using Doctrine 2.1. I have successfully integrated Doctrine in my ZF ...
3
votes
1answer
225 views

Methods for getting annotation metadata in Java

I'm working on a JSR-303 validation framework for GWT. Some of you may have heard of it even though it is a small project. Here is gwt-validation. In the old days (v1.0) it used a marker interface ...
1
vote
0answers
133 views

Integrate custom annotations in Zend Framework and Doctrine project

I need some advices or experiences in integrating custom annotations for Doctrine generated entities, but I also want to keep native Doctrine annotations so that they can be somehow registered ...
0
votes
1answer
398 views

JSR 303 Bean Validation, validation define array values in XML

I'm trying to create a custom validation wherein I have defined the annotation to accept an array of Strings for example: public @interface Enum { String message() default "{}"; ...
0
votes
1answer
390 views

Struts2 validation and Select tag

I'm using struts2 and validation using annotations in the action. I do use another action to fill the select lists when i fill the form with missing data it returns to the input result of the action ...
8
votes
2answers
689 views

How can I generate Java objects with Bean Validation annotations from an XSD?

I'm writing an EJB as a contract first SOAP service and I generate the java classes and SEI from the WSDL. The WSDL specifies several types with constraints (max length, pattern, etc). The generated ...
0
votes
1answer
665 views

How to validate dynamic radio buttons using struts2 validation.xml

I have some radio buttons that are generated dynamically, I want to validate these fields. How do I do it in validation.xml(Struts2)? Can I do this using annotations? Not sure how to though..
1
vote
1answer
321 views

Using parameters for messages in Spring validation annotations

In this kind of code that adds a validation constraint to an attribute of my command class: @NotBlank(message="{xxx.constraints.username.required}") how can I pass parameters to the message? In ...
0
votes
2answers
384 views

Spring MVC Annotation Validation - Reject Field Once

I am having a situation where I would like to validate a form but only want to reject a feild once. For instance say it looks like this public class Person{ @NotEmpty @Range(max=20) String ...
2
votes
1answer
1k views

How to use closures in validation component in Symfony2?

Would you share with me an example how to use closures in validation component in Symfony2? I use this code to validate $prop: use Symfony\Component\Validator\Constraints as Assert; class A { ...
2
votes
2answers
3k views

Spring 3 annotation-based validation: password and confirm password

In my Spring 3 MVC application a users need to save a password and it would be a nice feature if they also were able to confirm the password upon saving. In the bean I'm using annotation based ...
1
vote
1answer
177 views

JPA: Own Annotation to bundle annotations for fields with same value

I'm wondering how to write my own Annotation for fields which have the same annotations. For example: old class: public class XXXEntity { @NotNull @SomeAnnotation_0 @SomeAnnotation_1 ...
0
votes
1answer
426 views

i18n and Java validation annotation messages

I've got the following annotation: @NotEmpty @Documented @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) @Constraint(validatedBy = SupportedVideoUrlValidator.class) public @interface ...
3
votes
2answers
2k views

Symfony2: entity asserts that accept an array of types?

I have an entity with the field $companies. This field has to store an array of Company objects. So I described assert this way: @Assert\Type("Acme\MyBundle\Entity\Company") But it's always invalid ...
0
votes
1answer
430 views

Spring 3 validation method not validating

I'm having some issues finding out how to validate in spring 3. What i have so far is this Java Bean.... public class User { @NotEmpty @Size(min=2, max=40) private String name=""; @Email private ...
3
votes
1answer
447 views

Looking for method argument validation framework based on AOP and annotations

I'm looking for argument validation framework which: 1) Allows specifying argument constraints via annontations (like OVal, JaValid) 2) Validation code automatically injected (during compilation or ...

1 2