Results 1 to 2 of 2

Thread: STS xml AOP highlighting

Threaded View

  1. #1
    Join Date
    Apr 2011
    Location
    Stoke, UK
    Posts
    6

    Default STS xml AOP highlighting

    Is STS able to highlight java code that is advised via xml declared pointcuts? e.g.

    Code:
     <aop:config>
            <aop:pointcut id="pc" expression="execution(* x.y.service.*.*(..))"/>
            <aop:advisor advice-ref="txAdvice" pointcut-ref="txPointcut"/>
      </aop:config>
    I have x.y.service.Foo, when I browse this class in the Java editor can it tell me that it is advised? I have seen Spring Roo projects showing very useful highlighting and would like to see this in a non-spring roo project. If this isn't possible, is there an alternative? I have tried the Spring tools/Enable Spring Aspects tooling option
    Last edited by martinprit; May 6th, 2011 at 04:28 AM. Reason: addtional info

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •