Tagged Questions

0
votes
1answer
4 views

MVC Toolkit and XmlMetadataProvider

I have been working on validation with the ASP.NET MVC BETA 2. Some of the reading that I have done is very critical of the buddy class approach because it isn't DRY (Don't Repeat Yourself) and …
2
votes
2answers
56 views

Spring MVC very confused about controller mappings

Using annotation-based controller mappings. @Controller public class AlertsController { @RequestMapping(value="create", method=RequestMethod.GET) public void create(HttpServletRequest request, …
1
vote
2answers
31 views

How to write automated unit tests for java annotation processor?

I'm experimenting with java annotation processors. I'm able to write integration tests using the "JavaCompiler" (in fact I'm using "hickory" at the moment). I can run the compile process and analyse …
3
votes
5answers
79 views

How can I place validating constraints on my method input parameters?

Here is the typical way of accomplishing this goal: public void myContractualMethod(final String x, final Set<String> y) { if ((x == null) || (x.isEmpty())) { throw new …
0
votes
0answers
9 views

MKAnnotationView

Hello. my question is, to set more Annotation Pins on a map? enter code - (NSArray *) addressLocation { kunden = [NSArray arrayWithObjects:@"Kammlach", @"Mindelheim",@"Ettringen", nil]; NSString …
0
votes
1answer
21 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? - (MKAnnotationView …
0
votes
3answers
65 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 value1 here }
1
vote
3answers
30 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 factory public class …
4
votes
4answers
226 views

Can annotations be used for code injection?

Hi all, I realise that this might be a question that has been asked and answered, but please bear with me. I want to know if it is possible to use annotations to inject code into your classes …
0
votes
0answers
3 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 question. Some of …
1
vote
0answers
43 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 (like lookups) …
0
votes
2answers
44 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 version?
1
vote
2answers
494 views

Accessing HttpServletRequest from AOP advice in Spring 2.5 with annotations

Hi All, I have tried to find the answer to this question on both the Spring forum and by searching StackOverflow. I have found a lot of pages describing horrible architectures and asking for about …
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(); } public enum …
1
vote
3answers
52 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 2 3 4 5 18 next
15 30 50 per page