0
votes
0answers
21 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 …
14
votes
5answers
236 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
2answers
44 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 …
1
vote
4answers
51 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 …
1
vote
3answers
32 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
7answers
329 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 …
0
votes
0answers
13 views
Limitations in JUnit4’s annotations
Uri's answer got me thinking about what limitations JUnit 4 aquired by using annotations instead of a specific class hierarchy and interfaces the way JUnit 3 and earlier did. I'm w …
2
votes
5answers
157 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
56 views
Using Dependency Injection in POJO’s to inject EJB’s
Is it possible to inject ejb's into pojo's using the @EJB annotation?
If it is, do I have to set up anything special on a JBoss server to make it work?
Please let us not discuss t …
0
votes
1answer
27 views
Is there any way to create form with multiple submit buttons on Spring MVC using annotations?
I'm trying to create simple add/remove form using annotation based Spring MVC.
'Add' functionality comes smoothly, but when I tried to add another button to form i've got stuck.
H …
0
votes
1answer
31 views
Transactional services => BeanNotOfRequiredTypeException, should be Advice, but is TransactionInterceptor
Hi guys,
After following the great advice given in a thread about service beans I have made a Service that is listed under. I've tried putting @Transactional at the interface leve …
0
votes
2answers
43 views
Adding Java Annotations at Runtime
Is it possible to add an annotation to an object (in my case in particular, a Method) at runtime?
For a bit more explanation: I have two modules, moduleA and moduleB. moduleB dep …
0
votes
1answer
28 views
Eclipse APT slows compiling
I'm currently writing an Eclipse APT plug-in to check if my annotations are correct.
But it appears that enabling APT causes my compile process to slow down.
Even saving a tiny, u …
7
votes
7answers
149 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
30 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 …
