Skip to content

Commit e4516e3

Browse files
committed
Catch LinkageError for ClassLoaderUtil.isClassPresent in case class is present but is failed to load
1 parent 9f2655c commit e4516e3

File tree

3 files changed

+59
-1
lines changed

3 files changed

+59
-1
lines changed

CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Apollo 1.9.2
88
* [Fix the issue that property placeholder doesn't work for dubbo reference beans](https://github.com/apolloconfig/apollo/pull/4161)
99
* [Update xstream version to 1.4.18](https://github.com/apolloconfig/apollo/pull/4177)
1010
* [Fix the NPE occurred when using EnableApolloConfig with Spring 3.1.1](https://github.com/apolloconfig/apollo/pull/4179)
11+
* [Catch LinkageError for ClassLoaderUtil.isClassPresent in case class is present but is failed to load](https://github.com/apolloconfig/apollo/pull/4187)
1112

1213
------------------
1314
All issues and pull requests are [here](https://github.com/apolloconfig/apollo/milestone/10?closed=1)

apollo-core/src/main/java/com/ctrip/framework/apollo/core/utils/ClassLoaderUtil.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ public static ClassLoader getLoader() {
6161
return loader;
6262
}
6363

64-
6564
public static String getClassPath() {
6665
return classPath;
6766
}
@@ -71,6 +70,11 @@ public static boolean isClassPresent(String className) {
7170
Class.forName(className);
7271
return true;
7372
} catch (ClassNotFoundException ex) {
73+
// ignore expected exception
74+
return false;
75+
} catch (LinkageError ex) {
76+
// unexpected error, need to let the user know the actual error
77+
logger.error("Failed to load class: {}", className, ex);
7478
return false;
7579
}
7680
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
/*
2+
* Copyright 2021 Apollo Authors
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*
16+
*/
17+
package com.ctrip.framework.apollo.core.utils;
18+
19+
import static org.junit.Assert.*;
20+
21+
import org.junit.Test;
22+
23+
public class ClassLoaderUtilTest {
24+
private static boolean shouldFailInInitialization = false;
25+
@Test
26+
public void testGetClassLoader() {
27+
assertNotNull(ClassLoaderUtil.getLoader());
28+
}
29+
30+
@Test
31+
public void testIsClassPresent() {
32+
assertTrue(ClassLoaderUtil.isClassPresent("java.lang.String"));
33+
}
34+
35+
@Test
36+
public void testIsClassPresentWithClassNotFound() {
37+
assertFalse(ClassLoaderUtil.isClassPresent("java.lang.StringNotFound"));
38+
}
39+
40+
@Test
41+
public void testIsClassPresentWithLinkageError() {
42+
shouldFailInInitialization = true;
43+
assertFalse(ClassLoaderUtil.isClassPresent(ClassWithInitializationError.class.getName()));
44+
}
45+
46+
public static class ClassWithInitializationError {
47+
static {
48+
if (ClassLoaderUtilTest.shouldFailInInitialization) {
49+
throw new RuntimeException("Some initialization exception");
50+
}
51+
}
52+
}
53+
}

0 commit comments

Comments
 (0)