Skip to content

Commit 38de3d5

Browse files
committed
Merge branch '6.0.x'
# Conflicts: # build.gradle # framework-platform/framework-platform.gradle # spring-context/src/main/java/org/springframework/context/support/AbstractApplicationContext.java
2 parents c0d98fc + e0a55c2 commit 38de3d5

File tree

2 files changed

+20
-13
lines changed

2 files changed

+20
-13
lines changed

framework-platform/framework-platform.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ javaPlatform {
99
dependencies {
1010
api(platform("com.fasterxml.jackson:jackson-bom:2.15.2"))
1111
api(platform("io.micrometer:micrometer-bom:1.12.0-RC1"))
12-
api(platform("io.netty:netty-bom:4.1.97.Final"))
12+
api(platform("io.netty:netty-bom:4.1.100.Final"))
1313
api(platform("io.netty:netty5-bom:5.0.0.Alpha5"))
1414
api(platform("io.projectreactor:reactor-bom:2023.0.0-M3"))
1515
api(platform("io.rsocket:rsocket-bom:1.1.3"))
16-
api(platform("org.apache.groovy:groovy-bom:4.0.14"))
16+
api(platform("org.apache.groovy:groovy-bom:4.0.15"))
1717
api(platform("org.apache.logging.log4j:log4j-bom:2.20.0"))
1818
api(platform("org.eclipse.jetty:jetty-bom:12.0.1"))
1919
api(platform("org.eclipse.jetty.ee10:jetty-ee10-bom:12.0.1"))
2020
api(platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3"))
2121
api(platform("org.jetbrains.kotlinx:kotlinx-serialization-bom:1.6.0"))
2222
api(platform("org.junit:junit-bom:5.10.0"))
23-
api(platform("org.mockito:mockito-bom:5.5.0"))
23+
api(platform("org.mockito:mockito-bom:5.6.0"))
2424

2525
constraints {
2626
api("com.fasterxml:aalto-xml:1.3.2")
@@ -103,10 +103,10 @@ dependencies {
103103
api("org.apache.httpcomponents.client5:httpclient5:5.2.1")
104104
api("org.apache.httpcomponents.core5:httpcore5-reactive:5.2.2")
105105
api("org.apache.poi:poi-ooxml:5.2.3")
106-
api("org.apache.tomcat.embed:tomcat-embed-core:10.1.13")
107-
api("org.apache.tomcat.embed:tomcat-embed-websocket:10.1.13")
108-
api("org.apache.tomcat:tomcat-util:10.1.13")
109-
api("org.apache.tomcat:tomcat-websocket:10.1.13")
106+
api("org.apache.tomcat.embed:tomcat-embed-core:10.1.14")
107+
api("org.apache.tomcat.embed:tomcat-embed-websocket:10.1.14")
108+
api("org.apache.tomcat:tomcat-util:10.1.14")
109+
api("org.apache.tomcat:tomcat-websocket:10.1.14")
110110
api("org.aspectj:aspectjrt:1.9.20")
111111
api("org.aspectj:aspectjtools:1.9.20")
112112
api("org.aspectj:aspectjweaver:1.9.20")

spring-context/src/main/java/org/springframework/context/support/AbstractApplicationContext.java

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -136,26 +136,33 @@ public abstract class AbstractApplicationContext extends DefaultResourceLoader
136136
implements ConfigurableApplicationContext {
137137

138138
/**
139-
* Name of the LifecycleProcessor bean in the factory.
140-
* If none is supplied, a DefaultLifecycleProcessor is used.
139+
* The name of the {@link LifecycleProcessor} bean in the context.
140+
* If none is supplied, a {@link DefaultLifecycleProcessor} is used.
141141
* @since 3.0
142142
* @see org.springframework.context.LifecycleProcessor
143143
* @see org.springframework.context.support.DefaultLifecycleProcessor
144+
* @see #start()
145+
* @see #stop()
144146
*/
145147
public static final String LIFECYCLE_PROCESSOR_BEAN_NAME = "lifecycleProcessor";
146148

147149
/**
148-
* Name of the MessageSource bean in the factory.
150+
* The name of the {@link MessageSource} bean in the context.
149151
* If none is supplied, message resolution is delegated to the parent.
150-
* @see MessageSource
152+
* @see org.springframework.context.MessageSource
153+
* @see org.springframework.context.support.ResourceBundleMessageSource
154+
* @see org.springframework.context.support.ReloadableResourceBundleMessageSource
155+
* @see #getMessage(MessageSourceResolvable, Locale)
151156
*/
152157
public static final String MESSAGE_SOURCE_BEAN_NAME = "messageSource";
153158

154159
/**
155-
* Name of the ApplicationEventMulticaster bean in the factory.
156-
* If none is supplied, a default SimpleApplicationEventMulticaster is used.
160+
* The name of the {@link ApplicationEventMulticaster} bean in the context.
161+
* If none is supplied, a {@link SimpleApplicationEventMulticaster} is used.
157162
* @see org.springframework.context.event.ApplicationEventMulticaster
158163
* @see org.springframework.context.event.SimpleApplicationEventMulticaster
164+
* @see #publishEvent(ApplicationEvent)
165+
* @see #addApplicationListener(ApplicationListener)
159166
*/
160167
public static final String APPLICATION_EVENT_MULTICASTER_BEAN_NAME = "applicationEventMulticaster";
161168

0 commit comments

Comments
 (0)