publicaspectSimpleAutoboxingAspect{// The pointcuts here expose contextbefore(Integeri):within(SimpleAutoboxing)&&call(*met*(..))&&args(i){System.err.println("Matching by Integer:"+i);}before(inti):within(SimpleAutoboxing)&&call(*met*(..))&&args(i){System.err.println("Matching by int:"+i);}}