Skip to content

Commit a387e28

Browse files
committed
typo fix
Signed-off-by: waylon <waylon.tian@yamibuy.com>
1 parent 6703ff7 commit a387e28

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This project is used as example in some articles:
3535
* [Create a simple WebFlux Reactive REST Spring Boot app](#create-a-simple-webflux-reactive-rest-spring-boot-app)
3636
* [Make Spring Boot app Graal Native Image friendly](#make-spring-boot-app-graal-native-image-friendly)
3737
* [Relocate Annotation classpath scanning from runtime to build time](#relocate-annotation-classpath-scanning-from-runtime-to-build-time)
38-
* [Disable usage of GCLIB proxies](#disable-usage-of-gclib-proxies)
38+
* [Disable usage of CGLIB proxies](#disable-usage-of-cglib-proxies)
3939
* [Detect Autoconfiguration](#detect-autoconfiguration)
4040
* [Get Spring Graal @AutomaticFeature](#get-spring-graal-automaticfeature)
4141
* [Set start-class element in pom.xml](#set-start-class-element-in-pomxml)
@@ -303,9 +303,9 @@ The `@AutomaticFeature` will additionally chase down imported annotated classes
303303
And as resource files like `application.properties` also need to be registered at build time, the Feature covers those too.
304304

305305

306-
### Disable usage of GCLIB proxies
306+
### Disable usage of CGLIB proxies
307307

308-
With Spring Boot 2.2 GCLIB proxies are no longer necessary - it introduces the new `proxyBeanMethods` option to avoid GCLIB processing. Let's have a look at our [SpringBootHelloApplication.java](src/main/java/io/jonashackt/springbootgraal/SpringBootHelloApplication.java):
308+
With Spring Boot 2.2 CGLIB proxies are no longer necessary - it introduces the new `proxyBeanMethods` option to avoid CGLIB processing. Let's have a look at our [SpringBootHelloApplication.java](src/main/java/io/jonashackt/springbootgraal/SpringBootHelloApplication.java):
309309

310310
```java
311311
@SpringBootApplication(proxyBeanMethods = false)

0 commit comments

Comments
 (0)