최초 업로드

This commit is contained in:
ByeonJungHun
2024-07-25 10:54:05 +09:00
commit 463d11343c
20 changed files with 834 additions and 0 deletions

14
java/cfg/local.advice Normal file
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.*