You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update ExecutableArchiveLauncher so that `-cp` URLs are not added
when they are already contained as nested JARs. This prevents a
SecurityException "signer information does not match error" when using
signed jars. The root cause of the issue was that the primary JAR file
was on the default classpath with the URL "file:....jar" and in the
main URL set as "jar:file:....jar". It is now filtered so that only
the "jar:" variant is added.
Fixesgh-1134
Copy file name to clipboardExpand all lines: spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/ExecutableArchiveLauncher.java
+13-3Lines changed: 13 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@
30
30
31
31
/**
32
32
* Base class for executable archive {@link Launcher}s.
33
-
*
33
+
*
34
34
* @author Phillip Webb
35
35
* @author Andy Wilkinson
36
36
*/
@@ -78,11 +78,11 @@ public boolean matches(Entry entry) {
0 commit comments