<configuration>
<appender>
<pattern>
//..이 안에들어가는 내용
</pattern>
<appender>
</configuration>
pattern으로 사용할 수 있는 것들
@Pointcut(
"execution(" // PCD execution 지정
+ "[접근제한자 패턴] " // public
+ "리턴타입 패턴" // long
+ "[패키지명, 클래스 경로 패턴]" // com.moong.ahea.UserService
+ "메소드명 패턴(파라미터 타입 패턴|..)" // .findUserId(String)
+ "[throws 예외 타입 패턴]" // throws RuntimeException
+")"
)