vote up 0 vote down star

I do have something more specific in mind, however:

Each web service method needs to be wrapped with some boiler place code (cross cutting concern, yes, spring AOP would work great here but it either doesn't work or unapproved by gov't architecture group). A simple service call is as follows:

@WebMethod...
public Foo performFoo(...) {

   Object result = null;
   Object something = blah;
   try {
      soil(something);

      result = handlePerformFoo(...);
    } catch(Exception e) {
       throw translateException(e);
    } finally {
       wash(something);
    }
    return result;
}

protected abstract Foo handlePerformFoo(...);

(I hope that's enough context). Basically, I would like a hook (that was in the same thread - like a method invocation interceptor) that could have a before() and after() that could could soil(something) and wash(something) around the method call for every freaking WebMethod.

Can't use Spring AOP because my web services are not Spring managed beans :(

HELP!!!!! Give advice! Please don't let me copy-paste that boiler plate 1 billion times (as I've been instructed to do).

Regards, LES

flag

68% accept rate

1 Answer

vote up 0 vote down

Is AspectJ an option since Spring is out?

Or, can you use Reflection, and just redesign your application to work with this concept?

For a review on reflection you can look at this article: http://onjava.com/pub/a/onjava/2007/03/15/reflections-on-java-reflection.html

Or redesign your class to use an abstract class, so performFoo would be in the abstract class, so you don't do copy and paste. You are almost there in your example.

link|flag

Your Answer

Get an OpenID
or

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