[
http://opensource.atlassian.com/projects/hibernate/browse/HV-43?page=com....
]
Emmanuel Bernard commented on HV-43:
------------------------------------
Leonardo,
I will not push existing and potential validation users in a wrong path. It would be very
stupid and dishonest on my side. The catch is clear, some duplication definition if you do
not use Hibernate as your JPA provider.
When JPA 2 come, hibernate JPA user will alrady be in the right path, and non hibernate
jpa users will just have to get rid of duplication.
If you don't want to use it, it's your choice. Just pick up what's more
productive for you.
Hibernate Validator could load JPA annotations for validation
-------------------------------------------------------------
Key: HV-43
URL:
http://opensource.atlassian.com/projects/hibernate/browse/HV-43
Project: Hibernate Validator
Issue Type: Improvement
Affects Versions: 3.0.0.ga, 3.0.1
Reporter: Leonardo Pinho
Priority: Critical
Hibernate Validator could load JPA annotations fields for validation, like at @Column
(javax.persistence.Column):
public class Test {
@Column(name="NAME", length=40, nullable=false)
private String name;
}
Otherwise I have to change the code to:
public class Test {
@NotNull
@Length(max=40)
@Column(name="NAME", length=40, nullable=false)
private String name;
}
And I got a redundant code... :(
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://opensource.atlassian.com/projects/hibernate/secure/Administrators....
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira