0
votes
1answer
21 views
How to restart transactions on deadlock/lock-timeout in Spring?
Hi,
What is the best practice on implementing a transaction restart upon deadlock or lock timeout exceptions when using Spring (specifically the Spring recommended approach: decla …
0
votes
2answers
23 views
delete hibernate entity without (attempting to) delete association table (view) entry
Entity A and B have a many to many relationship using link table AtoB.
If Entity A is deleted, the related links are deleted by hibernate. So far so good.
My problem is that my l …
2
votes
2answers
65 views
Using annotations to implement a static join in hibernate
Hi,
I'm relatively new to hibernate and was wondering if someone could help me out.
While I have no issues implementing a normal join on multiple columns in hibernate using the @Jo …
1
vote
1answer
22 views
Mapping db-imported countries to address entity with JPA
I ran some DDL script to setup a complete country table in my database. The country table's primary key column contains the corresponding ISO code for every country.
In my JPA pr …
0
votes
1answer
25 views
Get info on a mapview selected annotation
I have annotations on a mapview and a callout with a button on each. What I need to do is grab properties from this callout, ie. the title, but logging this line:
NSLog(@"%@", map …
14
votes
5answers
263 views
Arguments Against Annotations
My team is moving to Spring 3.0 and there are some people who want to start moving everything into Annotations. I just get a really bad feeling in my gut (code smell?) when I see …
0
votes
0answers
157 views
How to avoid MKMapKit Related Crashes on the iPhone
So, for the past few days I have been struggling to understand how to implement a simple MKMapView with some custom annotations without crashing my application in the process. Unfo …
0
votes
1answer
46 views
hibernate @DiscriminatorValue does not apply to associations
I have the following inheritance hierarchy.
@Entity
@Table(FRUIT)
@Inheritance(strategy=InheritanceType.SINGLE_TABLE)
@DiscriminatorColum(name="FRUIT_TYPE",discriminatorType=STRIN …
1
vote
4answers
69 views
Hibernate entity with restriction
Hi,
We have a DB table that is mapped into a hibernate entity. So far everything goes well...
However what we want is to only map enentitys that satisty a specific criteria, like …
2
votes
7answers
363 views
Why is not possible to extend annotations in Java?
I don't understand why there is no inheritance in Java annotations, just as Java classes. I think it would be very useful.
For example: I want to know if a given annotation is a v …
1
vote
3answers
70 views
hibernate - How to annotate a property as enum with a field
How do I map an enum with a field in it?
public enum MyEnum{
HIGHSCHOOL ("H"), COLLEGE("C")
private int value;
public MyEnum getInstance(String value){...}
}
@Entity
public class …
2
votes
5answers
175 views
Java: What is the fastest way to inject fields using reflection?
Hello, everyone!
Suppose, I have a lot of classes, which are constructed using Java reflection (for some reason). Now I need to post-inject values to fields, which are
annotated …
0
votes
2answers
48 views
How to Check References of Annotated Methods
I'm trying to find a way to check my classes for references of methods with a particular annotation (think "Deprecated").
As far as i see it, analysing byte code won't work becaus …
7
votes
7answers
171 views
Is it possible to ignore certain unit tests?
Hi, I'm currently working on a project which uses JUnit4 extensively throughout all the modules. We're using Maven2 to build the project and Hudson for continuous integration. The …
0
votes
1answer
88 views
Hibernate-validator: @NotEmpty does not work for null values
Hi all.
I have annotated a String field with @NotEmpty tag.
When I try to persist the entity with this filed's value "", it works fine. Mechanism detects the validation error and …
