vote up 4 vote down star
2

The question tells it all.

For the experts, is there a reason the SUN java 5 compiler accepts recursive annotations (contrary to the langspec), while the later compilers do not? I mean, what could be an argument against recursive annotations.

Edit: a recursive annotation is something like:

@Panel(layout=BorderLayout.class,
    nested={
        @Panel(region=NORTH, layout=FlowLayout.class, ...)
        @Panel(region=SOUTH, layout=FlowLayout.class, ...)
    }
)
flag
I'd be interested in seeing an example of recursive annotations, as well as a use for them. Do you have any references you could post to fill out your question a bit? – Steve B. Apr 8 at 14:26
No, I have no such references currently. But I can tell you the use: A compiler of a functional language emits java code, and the code is annotated with some useful information (like type, strictness, etc) the compiler collected. Of course, the annotation for @Type is recursive. – Ingo Apr 8 at 14:37

3 Answers

vote up 2 vote down check

First -- I'm not sure what you mean by recursive annotations. Do you mean annotations that can contain references to other annotations of the same type? Something like

@Panel(layout=BorderLayout.class,
    nested={
        @Panel(region=NORTH, layout=FlowLayout.class, ...)
        @Panel(region=SOUTH, layout=FlowLayout.class, ...)
    }
)

(which would be an example of where I'd like to use it if it were possible...)

As for my use of custom annotations (and processors): code generation.

See http://code.google.com/p/javadude/wiki/Annotations

For example, JavaBean properties:

@Bean(
    properties={    
      @Property(name="name"),
      @Property(name="phone", bound=true),
      @Property(name="friend", type=Person.class, kind=PropertyKind.LIST)
    }
)
public class Person extends PersonGen {
    // generated superclass PersonGen will contain getters/setters
    //    field definitions, property change support...
}

or a mix-in example

package sample;

import java.util.List;

public interface IFlightAgent {
    List<IFlight> getFlight();
    void reserve(IFlight flight);
}

public interface ICarAgent {
    List<ICar> getCars();
    void reserve(ICar car);
}

public interface IHotelAgent {
    List<IHotel> getHotels();
    void reserve(IHotel hotel);
}

package sample;

import com.javadude.annotation.Bean;
import com.javadude.annotation.Delegate;

@Bean(delegates = {
    @Delegate(type = IHotelAgent.class,
              property = "hotelAgent",
              instantiateAs = HotelAgentImpl.class),
    @Delegate(type = ICarAgent.class,
              property = "carAgent",
              instantiateAs = CarAgentImpl.class),
    @Delegate(type = IFlightAgent.class,
              property = "flightAgent",
              instantiateAs = FlightAgentImpl.class)
    }
)
public class TravelAgent extends TravelAgentGen
    implements IHotelAgent, ICarAgent, IFlightAgent
{
    // generated superclass TravelAgentGen will create instances
    //   of the "instantiateAs" classes and delegate the interface
    //   methods to them
}

See http://stackoverflow.com/questions/687553/the-drawbacks-of-annotation-processing-in-java and my answer to it for some potential issues with their usage.

link|flag
Thanks for a the compelling example of a recursive annotation. You got me exactly right. +1 – Ingo Apr 8 at 14:57
cool! I didn't know you could do that in java5... too bad they don't allow it :( – Scott Stanchfield Apr 8 at 15:47
One can even use recursive annotations compiled with the java5 compiler in source code and compile that with the java6 compilers. It's just astonishing. – Ingo Apr 9 at 7:23
vote up 1 vote down

I do use non-standard annotations, most usually to mark class fields as targets for a reflexive process, like caching in RPC calls, or specific initializations procedures. I never had a need for recursive annotations, however... And I think there is a potential problem with that, as annotations need to be processed at class-definition time, before standard initializers are ready... which was I think the main reason to limit Annotation contents to base types...

link|flag
Thanks for the comment. However, surprisingly, in Sun SDK Java 5, recursive annotations work just fine. What is even more surprising, once you have compiled your recursive annotation with the Java 5 compiler, you can use them (i.e. annotate something) in source code and compile that with the Java 6! – Ingo Apr 9 at 7:21
vote up 1 vote down

I have been using annotations recently, as it is used heavily by Oracle Weblogic Server to modify the behavior of Java Web Services. There's a full listing of the annotations they define here. In particular, I end up using their Policy annotation the most, since that's what their security model is based off of; you can see their detailed examples on their documentation page.

I've never heard of recursive annotations.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.