-
-
Notifications
You must be signed in to change notification settings - Fork 952
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support multiple messageSource beans (#13640)
* Support multiple messageSource beans and default to grails or spring instance
- Loading branch information
1 parent
9ea9c60
commit 438d2e0
Showing
5 changed files
with
92 additions
and
13 deletions.
There are no files selected for viewing
57 changes: 57 additions & 0 deletions
57
grails-core/src/main/groovy/grails/util/GrailsMessageSourceUtils.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
* Copyright 2024 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package grails.util | ||
|
||
import groovy.transform.CompileStatic | ||
import org.springframework.context.MessageSource | ||
|
||
|
||
/** | ||
* A simple class that selects a single {@link org.springframework.context.MessageSource MessageSource} | ||
* when two or more are present in the ApplicationContext. | ||
* It defaults to the Grails or Spring {@link org.springframework.context.MessageSource MessageSource}, if present. | ||
* | ||
* @author James Fredley | ||
* @since 7.0 | ||
*/ | ||
|
||
@CompileStatic | ||
class GrailsMessageSourceUtils { | ||
static MessageSource findPreferredMessageSource(List<MessageSource> messageSources){ | ||
if(!messageSources) { | ||
return null | ||
} | ||
|
||
if(messageSources.size() == 1) { | ||
return messageSources.get(0) | ||
} | ||
|
||
MessageSource firstGrailsSpring = messageSources.find {messageSource -> | ||
String className = messageSource.class.name | ||
// use the first Grails or Spring MessageSource | ||
className.startsWith("org.grails") || className.startsWith("grails") || className.startsWith("org.springframework") | ||
} | ||
|
||
// return the first Grails or Spring MessageSource | ||
if(firstGrailsSpring) { | ||
return firstGrailsSpring | ||
} | ||
|
||
// return the first MessageSource from the list | ||
return messageSources.get(0) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters