We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 03984ba + 16ec08a commit e44a3ebCopy full SHA for e44a3eb
spring-core/src/main/java/org/springframework/cglib/core/AbstractClassGenerator.java
@@ -360,7 +360,7 @@ protected Class generate(ClassLoaderData data) {
360
// SPRING PATCH BEGIN
361
if (inNativeImage) {
362
throw new UnsupportedOperationException("CGLIB runtime enhancement not supported on native image. " +
363
- "Make sure to include a pre-generated class on the classpath instead: " + getClassName());
+ "Make sure to enable Spring AOT processing in order to pre-generate this class: " + getClassName());
364
}
365
// SPRING PATCH END
366
byte[] b = strategy.generate(this);
0 commit comments