Hi all,

I have been using the out of the box spring insight in the tcServer 2.6.3 for a while and am interested in extending the traces to include my application classes.

Based upon this URL:

http://static.springsource.com/proje...verview-plugin

I added the insight annotations to my application pom:

<dependency>
<groupId>com.springsource.insight</groupId>
<artifactId>insight-annotation</artifactId>
<version>1.5.1.RELEASE</version>
</dependency>

I then added @Service annotations as

@Service
public class MyServiceImple {...}

and


public class MySeamAction {


@InsightEndPoint
public void create() {...}
...
}

When recompiling the war and redeploying, I do not see the new pointcuts being traced. Is something else needed to make insight pick up the annotated classes?