0
votes
1answer
4 views
iPhone - Annotation image disappears on touch
I am annotating my map and setting an image just fine, but when I tap the annotation on the MapView, the image goes from my custom image back to the red pin. Why is this?
- (MKAn …
0
votes
3answers
54 views
Retrieve JAVA Annotation Attribute
How can I retrieve the value of an annotation on the annotated method??
I have:
@myAnnotation(attribute1 = value1, attibute2 = value2)
public void myMethod()
{
//I want to get …
0
votes
0answers
2 views
AspectJ, getting annotated fields for use with advice
I want to use all the fields marked with an annotation in a class for use with some generic advice. What are some ways to go about doing that? This is a follow-up to my previous …
1
vote
0answers
38 views
Annotations of Annotations in Java 5/6
I am setting up Hibernate Caching and want to cache certain entities in different regions. For example, some entities can be "stale" for up to 5 minutes, some for an hour, and some …
0
votes
2answers
38 views
Can I write annotation in Groovy?
I know I can annotate my classes in Groovy with annotations, but can I write the annotation itself in Groovy (as opposed to just using annotation written in Java)? If so, from what …
0
votes
1answer
28 views
Abstract enum a annotation attribute type
Hi,
I have an interface which multiple enums are implementing, i.e
public interface MinorCodes {
public abstract int code();
public abstract String description();
}
publ …
1
vote
3answers
51 views
Do I need <class> elements in persistence.xml?
I have very simple persistance.xml file:
http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
<persistence-unit name="eventractor" transaction-type="RESOURCE_LOCAL"> …
1
vote
3answers
26 views
Hibernate 3.0 + ElementCollection class missing.
Hi,
I created a small desktop project using Hibernate, to understand how enterprise patterns are applied in there.
I'm using annotations, and wrote a class to wrap my session fac …
0
votes
0answers
11 views
How to user Hibernate @Valid constraint with Spring 3.x?
I am working on simple form to validate fields like this one.
public class Contact {
@NotNull
@Max(64)
@Size(max=64)
private String name;
@NotNull
@Email …
0
votes
2answers
32 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 …
1
vote
1answer
30 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 …
1
vote
1answer
26 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 …
2
votes
2answers
71 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 …
0
votes
1answer
41 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 …
1
vote
1answer
12 views
Retain annotations on CGLIB proxies?
Hi !
Am trying to create an object using an AOP framework which uses CGLIB to create proxy objects.
Strangely enough, the "enhanced" proxy object is devoid of ANY annotations the …
