Juergen Hoeller
33862d98ea
Merge branch '6.0.x'
2023-07-18 22:03:03 +02:00
Juergen Hoeller
bbcc788f60
Decouple exception messages for sync=true from @Cacheable
2023-07-18 22:02:09 +02:00
Sam Brannen
544f594592
Update copyright headers
2023-07-15 18:23:37 +02:00
jongwooo
c21a8aa8b0
Wrap ternary operator within parentheses as outlined in Code Style
...
Closes gh-30358
2023-07-15 18:04:01 +02:00
Sam Brannen
1058fed339
Merge branch '6.0.x'
2023-07-15 18:24:00 +02:00
Sam Brannen
63fe45d92a
Update copyright headers
2023-07-15 13:11:29 +02:00
Stephane Nicoll
d8854a2f3f
Polish "Evaluate key only if necessary"
...
See gh-22769
2023-07-14 14:43:04 +02:00
liguoxiong
806c83591c
Evaluate key only if necessary
...
Prior to this commit a @CachePut operation would fail if the key
expression is invalid, but guarded with an unless condition as the
former was evaluated too early. This commit makes sure that key for
a put is only evaluated if the put operation is active.
Note that this does not apply for @Cacheable as the key needs to be
computed early to determine if a matching entry exists in the cache.
See gh-22769
2023-07-14 14:43:04 +02:00
Juergen Hoeller
fd17df91fd
Merge branch '6.0.x'
...
# Conflicts:
# spring-jdbc/src/main/java/org/springframework/jdbc/support/AbstractFallbackSQLExceptionTranslator.java
2023-07-14 14:38:24 +02:00
Juergen Hoeller
e30391661d
Document repeatable annotation semantics for @Scheduled
...
Closes gh-23959
2023-07-14 14:37:28 +02:00
Juergen Hoeller
52c19272c6
Deprecate MBeanExporter's AUTODETECT constants
...
Closes gh-30874
2023-07-14 14:12:39 +02:00
Juergen Hoeller
357d5b4e6e
Merge branch '6.0.x'
2023-07-12 19:23:26 +02:00
Juergen Hoeller
c873a597c7
Polishing
2023-07-12 19:21:44 +02:00
Sébastien Deleuze
490ff0af5e
Refine the log message printed after restoration
...
Closes gh-30876
2023-07-12 15:20:33 +02:00
Sam Brannen
2e3fbac9a0
Merge branch '6.0.x'
2023-07-12 10:36:21 +02:00
Sam Brannen
1edc0d8002
Remove outdated Javadoc cross references
2023-07-12 10:36:02 +02:00
Sam Brannen
18c11e84f3
Merge branch '6.0.x'
2023-07-12 10:34:43 +02:00
Sam Brannen
a6dc020dc4
Remove since tag
2023-07-12 10:33:24 +02:00
Sam Brannen
07422d709e
Remove getAutodetectMode() in MBeanExporter
...
After further consideration, the team has decided to remove the
getAutodetectMode() method since its return type conflicts with the
parameter type in setAutodetectMode(int), making it an invalid bean
property.
See gh-30855
2023-07-12 10:30:38 +02:00
Juergen Hoeller
e048b093b5
ContextClosedEvent triggers early cancelling of scheduled tasks
...
Closes gh-24629
See gh-27090
2023-07-11 22:11:13 +02:00
Juergen Hoeller
3a481a7d7f
Merge branch '6.0.x'
2023-07-11 18:02:25 +02:00
Juergen Hoeller
f19433f2d8
Polishing
2023-07-11 18:01:07 +02:00
Juergen Hoeller
0b02a5e073
Avoid illegal reflective access in ContextOverridingClassLoader
...
Closes gh-22791
2023-07-11 17:51:55 +02:00
Sam Brannen
8448f597b1
Merge branch '6.0.x'
2023-07-11 15:41:51 +02:00
Sam Brannen
fb3f30832c
Delete obsolete constant in AnnotationConfigUtils
...
See gh-30695
2023-07-11 15:33:28 +02:00
Sam Brannen
679b668bbb
Avoid need for reflection hints for MBeanExporter in native image
...
Prior to this commit, MBeanExporter used
org.springframework.core.Constants which used reflection to find
constant fields in the MBeanExporter class. Consequently, one had to
register reflection hints in order to use MBeanExporter in a GraalVM
native image.
This commit addresses this by replacing the use of the `Constants`
class with a simple java.util.Map which maps constant names to constant
values for the autodetect constants defined in MBeanExporter.
See gh-30851
Closes gh-30846
2023-07-10 19:01:44 +02:00
Sam Brannen
676daa990b
Reorganize methods in MBeanExporter
2023-07-10 18:28:45 +02:00
Sam Brannen
7c7fa69558
Introduce getAutodetectMode() in MBeanExporter
...
Closes gh-30855
2023-07-10 18:26:33 +02:00
Juergen Hoeller
d03b6aa1d6
Reinstate support for legacy JSR-250 Resource annotation
...
This merges the existing support for the legacy JSR-250 PostConstruct/PreDestroy annotations into CommonAnnotationBeanPostProcessor itself, opening up the InitDestroyAnnotationBeanPostProcessor base class for multiple init/destroy methods in a single post-processor. This removes the need for a separate JSR-250 InitDestroyAnnotationBeanPostProcessor in AnnotationConfigUtils.
Closes gh-30695
2023-07-09 16:52:17 +02:00
Juergen Hoeller
35c7e3960e
Polishing
2023-07-07 13:46:57 +02:00
Juergen Hoeller
8e8c3f5a7c
Polishing
2023-07-07 13:14:40 +02:00
Juergen Hoeller
1dc9dffc70
Restore full representation of rejected value in FieldError.toString()
...
We would preferably use ObjectUtils.nullSafeConciseToString(rejectedValue) here but revert to the full nullSafeToString representation for strict backwards compatibility (programmatic toString calls as well as exception messages).
Closes gh-30799
2023-07-04 15:58:46 +02:00
Sam Brannen
3c05679a97
Polishing
...
See gh-30762
2023-06-30 14:04:37 +02:00
Yanming Zhou
d8729a7c67
Polish variable name in ReschedulingRunnable
...
As a variable name, `initDelay` is applicable for `scheduleAtFixedRate`
and `scheduleWithFixedDelay` but not for `schedule`.
Closes gh-30762
2023-06-30 13:57:46 +02:00
Juergen Hoeller
60865eae4b
Align ConcurrentMapCacheManager locking behavior with CaffeineCacheManager
...
Closes gh-30780
2023-06-30 10:39:53 +02:00
Juergen Hoeller
599ac58baa
Avoid arithmetic overflow for large delay/period values
...
Closes gh-30754
2023-06-26 19:28:08 +02:00
Johnny Lim
433b72d493
Polish gh-29883
2023-07-10 22:13:12 +02:00
Sam Brannen
7bc731dfa6
Merge branch '6.0.x'
2023-07-10 19:07:09 +02:00
Juergen Hoeller
71bb45c87b
Merge branch '6.0.x'
2023-07-09 16:56:45 +02:00
Juergen Hoeller
5243c2262a
Support scheduler qualifier for reactive SubscribingRunnable as well
...
See gh-20818
2023-07-08 17:18:17 +02:00
Juergen Hoeller
a0c80ffc06
Destroy local TaskSchedulerRouter which may contain local executor
...
See gh-20818
2023-07-08 15:55:25 +02:00
Juergen Hoeller
a8614531ab
Support for determining a target scheduler for a specific task
...
Introduces "scheduler" attribute on @Scheduled annotation.
TaskSchedulerRouter delegates to qualified/default scheduler.
ScheduledMethodRunnable exposes qualifier through SchedulingAwareRunnable.
Closes gh-20818
2023-07-08 15:37:04 +02:00
Juergen Hoeller
f0fe58f0ec
Move observation support classes to scheduling.support package
...
Avoids a package cycle between config and support (only config->support allowed).
See gh-29883
2023-07-08 14:57:02 +02:00
Juergen Hoeller
464b676ec5
Expose shutdown state in TaskRejectedException message
...
See gh-27090
2023-07-07 23:59:10 +02:00
Juergen Hoeller
ddc3cf301a
Merge branch '6.0.x'
...
# Conflicts:
# spring-context/src/main/java/org/springframework/scheduling/concurrent/ExecutorConfigurationSupport.java
2023-07-07 13:51:08 +02:00
Juergen Hoeller
b12115b61f
Sophisticated lifecycle support for ThreadPoolTaskExecutor/Scheduler
...
Pause/resume capability through SmartLifecycle implementation.
ContextClosedEvent triggers early executor/scheduler shutdown.
Programmatic initiateShutdown() option for custom early shutdown.
Closes gh-30831
Closes gh-27090
Closes gh-24497
2023-07-07 13:04:52 +02:00
Sam Brannen
d86750372a
Improve Javadoc for @Configuration
2023-07-06 17:13:37 +02:00
rstoyanchev
deaa493644
Add Visitor to HandlerMethodValidationException
...
Closes gh-30813
2023-07-04 17:19:58 +01:00
Juergen Hoeller
2a77665be7
Merge branch '6.0.x'
2023-07-04 15:59:38 +02:00
rstoyanchev
592ab0f350
Add ~.validation.method package
...
Extract classes from ~.validation.beanvalidation without a direct
dependency on beanvalidation.
See gh-30644
2023-07-03 15:05:51 +01:00