3
votes
11answers
152 views
Useful Java Annotations
I'm interested in finding out exactly which Java annotations people think are most useful during development. This doesn't necessarily have to limited to the core Java API, you may include …
0
votes
2answers
50 views
Java “settings object”, serialization/deserialization
(Code is for Android Actually, I need code to be portable between Android and Java SE.)
I want to have a "settings" class with various game settings, like
public int map_size;
public String …
0
votes
4answers
95 views
Yet another Hibernate question
My application is trying to use Hibernate annotations. I've gotten the 3.5.0 version of Hibernate installed, but when I try to load my app I get the following exception:
…
0
votes
0answers
20 views
Configuring a Spring Aggregator with Mixed Annotations/XML
I'm trying to configure a Spring Aggregator as per the manual but when I use @CompletionStrategy or @CorrelationStrategy in addition to the @Aggregator element, neither strategy replaces the default.
…
2
votes
2answers
23 views
Do Domain Classes usually get JPA or JAXB Annotations or both?
I have a Java enterprise application that provides a web service, has a domain layer, and a hibernate persistence layer. In this particular case, there is not a huge difference (at the moment) …
3
votes
5answers
81 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 …
1
vote
2answers
38 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 …
1
vote
1answer
59 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
3answers
72 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
}
2
votes
2answers
68 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, …
0
votes
1answer
42 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
2answers
52 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
3answers
51 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 …
0
votes
0answers
17 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 …
1
vote
3answers
57 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">
…
