오류현상
젠킨스 파이프라인에서 Groovy를 사용하면서 BigDecimal을 사용해야했는데 new BigDecimal 구문에서 오류가 남
BigDecimal testVal = new BigDecimal("0.1") // Error!
>>> Script not permitted to use new java.math.BigDecimal java.lang.String. Administrators can decide whether to approve or reject this signature.
>>> Script not permitted to use new java.math.BigDecimal
오류원인
groovy 문법 오류
오류해결
new 키워드 제거
BigDecimal testVal = new BigDecimal("0.1") // Error!
BigDecimal testVal = "0.1" as BigDecimal // Correct!
반응형
'오류관리' 카테고리의 다른 글
Intellij 프로젝트 인식 안됨 (1) | 2024.10.16 |
---|---|
constructor [Class Name] in class [Package 경로] cannot be applied to given types. (0) | 2023.05.10 |
ORA-00979: GROUP BY 표현식이 아닙니다 (0) | 2023.04.10 |
ERR_SSL_VERSION_OR_CIPHER_MISMATCH (0) | 2022.12.05 |
Linux Crontab 파일로 등록하기 (1) | 2022.10.18 |