rstoyanchev
66a5742df3
Polishing
4 years ago
Stephane Nicoll
2f94713078
Make sure that annotation hierarchy is registered
...
This commit improves registerAnnotation to also registers the meta
annotation sources, if any. Without them, the annotation could not
be fully resolved.
See gh-28497
4 years ago
Sam Brannen
16a4a9ad3f
Polishing
4 years ago
Sam Brannen
ea9b1fccbd
Fix attribute return types in @PutExchange
...
The return types for the `value` and `url` attributes don't match those
in `@HttpExchange`.
See gh-28498
4 years ago
Eddú Meléndez
163bad38ef
Fix attribute return types in @DeleteExchange and @PatchExchange
...
The return types for the `value` and `url` attributes don't match those
in `@HttpExchange`.
Closes gh-28498
4 years ago
Stephane Nicoll
d0afbe40e6
Tag EventListener as a reflective operation
...
This commit adds compatibility of declarative event listeners in a
native image.
See gh-28475
4 years ago
Stephane Nicoll
4cca190aad
Add support of declarative use of reflection
...
This commit adds a `@Reflective` annotation that can be used to declare
that the annotated element requires reflection at runtime. By default,
the annotated element is exposed but this can be customized by
specifying a dedicated `ReflectiveProcessor`.
Closes gh-28469
4 years ago
Stephane Nicoll
2517c72f7d
Add a common utility to register hints for an annotation
...
This commit adds a utility that takes care of registering the necessary
hints to make an annotation visible at runtime. The core framework may
create a JDK proxy if necessary, which requires specific handling.
Closes gh-28497
4 years ago
wonwoo
9181ac70f5
Correctly detect Optional return type for @HttpExchange methods
...
Prior to this commit, a ClassCastException was thrown for an Optional
return type for an @HttpExchange method. This is because the check for
an Optional return type was based on the type contained in the Optional
instead of the Optional itself.
Closes gh-28493
4 years ago
Stephane Nicoll
9487e8ce1e
Polish
4 years ago
Sam Brannen
65066bd1e1
Fix Java 17 compiler warning about varargs
4 years ago
Sam Brannen
70415b1781
Merge branch '5.3.x'
4 years ago
Sam Brannen
59c7bb1f86
Use Arrays.toString instead of Arrays.asList when generating Strings
4 years ago
Sam Brannen
a1c3efbb5f
Polish ManagedList[Tests] and ManagedSet[Tests]
4 years ago
Sam Brannen
874077d16e
Apply "advanced" instanceof pattern matching
4 years ago
Sam Brannen
578d3f4466
Polish error message
4 years ago
Sam Brannen
0d4d383068
Merge branch '5.3.x'
4 years ago
Sam Brannen
6efe3aee34
Polishing
4 years ago
Sam Brannen
fe7c6f075b
Polishing
4 years ago
Sam Brannen
bf8a54decf
Switch focus to JUnit Jupiter in testing examples
4 years ago
izeye
0fb0335aa0
Add level guards for trace logging in SpringFactoriesLoaderRuntimeHintsRegistrar
...
Closes gh-28465
4 years ago
Sam Brannen
5220410768
Update copyright date
4 years ago
Eddú Meléndez Gonzales
506b78f469
Use getHost instead of getContainerIpAddress in Redis examples
...
getContainerIpAddress is deprecated.
Closes gh-28461
4 years ago
Sam Brannen
3d39dfc4ce
Polishing
4 years ago
Sam Brannen
754636ee56
Merge branch '5.3.x'
4 years ago
Sam Brannen
f2fe7f335c
Improve nullReturningBeanPostProcessor() test
...
See gh-28459
4 years ago
Sam Brannen
0cf2bd0bcf
Suppress warning in test in Gradle build
4 years ago
Brian Clozel
a6cd8a78e2
Upgrade to oci-build-task 0.10.0 in CI task
4 years ago
Arjen Poutsma
944c14bdf9
Fix email adress in '.mailmap'
4 years ago
Juergen Hoeller
a8c3c746af
Avoid package cycle with web.service.invoker through plain javadoc reference
...
See gh-28386
4 years ago
Juergen Hoeller
fc8e6705d6
Move AutowiredArguments support classes to beans.factory.aot
...
This reduces the package cycle between aot and annotation to an Autowired annotation reference in ConstructorOrFactoryMethodResolver, to be resolved along with gh-27920.
See gh-28414
4 years ago
rstoyanchev
f0e23b66f3
The "consumes" condition compares MediaType parameters
...
Closes gh-9257
4 years ago
Sam Brannen
4b0531b4aa
Merge branch '5.3.x'
4 years ago
Sam Brannen
48c797e429
Fix Kotlin example for static factory method
...
Closes gh-28399
4 years ago
Sam Brannen
5ddbdb6ba7
Merge branch '5.3.x'
4 years ago
Sam Brannen
be782a2197
Polish ref docs regarding the BeanFactory API
...
See gh-28403
4 years ago
Andy Wilkinson
1d825440c3
Update Javadoc since type-level @Controller is now required
...
See gh-22154 which removed support for a type-level @RequestMapping
annotation alone being sufficient for handler detection.
Closes gh-28448
4 years ago
izeye
6c8de96992
Add Javadoc since tag for RootBeanDefinition(ResolvableType) constructor
...
This commit also removes unnecessary super() invocations.
See gh-28418
Closes gh-28449
4 years ago
Sam Brannen
2487ccf79c
Merge branch '5.3.x'
4 years ago
Sam Brannen
8098e45bad
Sync gradle.properties between 5.3.x and main
4 years ago
Sam Brannen
6325ca95a6
Merge branch '5.3.x'
...
# Conflicts:
# gradle.properties
# spring-webmvc/src/test/java/org/springframework/web/servlet/DispatcherServletTests.java
4 years ago
Sam Brannen
6a67b4a2aa
Polish SpringFactoriesLoaderRuntimeHintsRegistrar
...
See gh-27955
4 years ago
Sam Brannen
06679a5583
Fix tests in DispatcherServletTests
...
See gh-28424
4 years ago
Sam Brannen
745eb1a881
Polish DispatcherServletTests
4 years ago
Brian Clozel
e6c0152916
Force AOT resolution of Spring Factories constructors
...
This commit forces the resolution of all declared constructors when
registering `RuntimeHints` for Spring factories. Resolving constructors
can throw additional `NoClassDefFoundError` at runtime and during native
image compilation, if a type exposed by the constructor is missing from
the current classloader.
See gh-27955
4 years ago
Spring Builds
10c55ff912
Next development version (v5.3.21-SNAPSHOT)
4 years ago
Juergen Hoeller
8b6dcb9ccc
Merge branch '5.3.x'
4 years ago
Juergen Hoeller
83186b689f
Refine CachedIntrospectionResults property introspection
...
Closes gh-28445
4 years ago
rstoyanchev
dc2947c52d
Ignore invalid connect frame
...
Closes gh-28443
4 years ago
Phillip Webb
2961426d8a
Fix checkstyle issues and test failures
...
See gh-27955
See gh-28442
4 years ago