티스토리 뷰
META-INF 폴더에 있는 서명파일이 유효하지 않아 아래와 같은 runtime Exception 이 발생하는 경우가 있다.
Exception in thread "main" [java.lang.SecurityException:](java.lang.SecurityException:) Invalid signature file digest for Manifest main attributes
이때는, uber Jar 에 포함되어 있는 서명파일을 제거 해줘야 한다.
filters를 사용하여 Jar에 포함되지 않도록 한다.
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass><!-- YOUR_APPLICATION_MAIN_CLASS --></mainClass>
</transformer>
</transformers>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/maven/**</exclude>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
참조
https://cloud.google.com/dataproc/docs/guides/manage-spark-dependencies?hl=ko
'Spark & Scala' 카테고리의 다른 글
[ spark & scala ] spark.sql.DataFrame 길이 구하는 방법 (0) | 2020.04.06 |
---|---|
[ Spark & Scala ] File, Folder 삭제 (0) | 2020.04.06 |
GCP noSuchMethodError 해결 (0) | 2020.02.14 |
scala maven build (0) | 2020.02.14 |
Spark 개발 프로젝트( IntelliJ, Scala, Maven ) (0) | 2020.02.12 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- plugin
- logstash
- Linux
- Git
- Size
- Kibana
- Spark
- SpringBoot
- Log
- Java
- intellij
- JPA
- elasticsearch
- spring boot
- error
- Postman
- Index
- JSON
- gradle
- Filter
- scala
- maven
- tomcat
- spring
- mac
- docker
- AWS
- apm
- install
- Container
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함