exemONE Java Agent 추가

This commit is contained in:
ByeonJungHun
2024-04-19 13:57:22 +09:00
parent 9cb85e3d11
commit 837512e69a
20 changed files with 818 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
### 작성방법
# 패키지 및 클래스 구분자는 slash(/)이며 클래스와 메소드는 dot(.)으로 구분한다.
# 강제포함, 제외, 포함 순으로 높은 우선순위를 갖는다.
# 강제포함은 exclamation mark(!), 제외는 dash(-)를 접두사로 붙여 표기한다.
# 와일드카드 문자(*)를 포함해 startWith, endWith 연산을 수행할 수 있다.
# 로드된 전체 클래스를 대상으로한 설정은 안정성 문제로 인해 동적 적용되지 않는다.
### 작성예시
# com/inzent.*
# -com/inzent/igate.*
# !com/inzent/igate/util.*
!javax/servlet/http/HttpServlet.*