Skip to content

Instantly share code, notes, and snippets.

@gabanox
Created October 17, 2014 17:38
Show Gist options
  • Save gabanox/bf110fbe4530d60820b5 to your computer and use it in GitHub Desktop.
Save gabanox/bf110fbe4530d60820b5 to your computer and use it in GitHub Desktop.
import org.aspectj.lang.annotation.Pointcut;
public class SystemArchitecture {
@Pointcut("execution(* (@org.springframework.stereotype.Repository *).*(..))")
public void Repository() {
}
@Pointcut("execution(* (@org.springframework.stereotype.Service *).*(..))")
public void Service() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment