Skip to content
This repository was archived by the owner on Feb 23, 2023. It is now read-only.

Commit 58a6d80

Browse files
committed
Remove method reflection config from WebMvcHints
Regression between 0.11.0-RC1 and 0.11.0. Closes gh-1393
1 parent aa37b19 commit 58a6d80

File tree

1 file changed

+2
-2
lines changed
  • spring-native-configuration/src/main/java/org/springframework/boot/autoconfigure/web/servlet

1 file changed

+2
-2
lines changed

spring-native-configuration/src/main/java/org/springframework/boot/autoconfigure/web/servlet/WebMvcHints.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727

2828
@NativeHint(trigger = WebMvcAutoConfiguration.class,
2929
types = {
30-
@TypeHint(types = Servlet.class),
31-
@TypeHint(types = ConfigurableWebApplicationContext.class)
30+
@TypeHint(types = Servlet.class, access = {}),
31+
@TypeHint(types = ConfigurableWebApplicationContext.class, access = {})
3232
},
3333
resources = @ResourceHint(patterns="org/springframework/web/util/HtmlCharacterEntityReferences.properties"))
3434
public class WebMvcHints implements NativeConfiguration {

0 commit comments

Comments
 (0)