Wednesday, September 24, 2014

Using wildcards for spring MessageSources


by Emil Korladinov 



Overview 

Recently I worked on a Spring project which uses a lot of property files located all over the source tree. The requirement is to use these property files as part of the messageSource configured by Spring Framework.After dome time spent in searching suitable solution, I came up with a custom solution which I want to share with all interested.

Wildcard enabled Spring message source

public class WildcardReloadableResourceBundleMessageSource extends
org.springframework.context.support.ReloadableResourceBundleMessageSource {
private ResourcePatternResolver resourcePatternResolver = new PathMatchingResourcePatternResolver();
@Override
public void setBasenames(String... basenames) {
if (basenames != null) {
List<String> baseNames = new ArrayList<String>();
for (int i = 0; i < basenames.length; i++) {
String basename = trimToEmpty(basenames[i]);
if (isNotBlank(basename)) {
try {
Resource[] resources = resourcePatternResolver.getResources(basename);
for (int j = 0; j < resources.length; j++) {
Resource resource = resources[j];
String uri = resource.getURI().toString();
String baseName = null;
if (resource instanceof FileSystemResource) {
baseName = "classpath:" + substringBetween(uri, "/classes/", ".properties");
} else if (resource instanceof ClassPathResource) {
baseName = substringBefore(uri, ".properties");
} else if (resource instanceof UrlResource) {
baseName = "classpath:" + substringBetween(uri, ".jar!/", ".properties");
}
if (baseName != null) {
String fullName = processBasename(baseName);
baseNames.add(fullName);
}
}
} catch (IOException e) {
logger.debug("No message source files found for basename " + basename + ".");
}
}
String[] resourceBasenames = Op.onList(baseNames).toSet().toArrayOf(Types.STRING).get();
super.setBasenames(resourceBasenames);
}
}
}
String processBasename(String baseName) {
String prefix = substringBeforeLast(baseName, "/");
String name = substringAfterLast(baseName, "/");
do {
name = substringBeforeLast(name, "_");
} while (name.contains("_"));
return prefix + "/" + name;
}
}

XML Configuration

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="messageSource"
class="co.jware.spring.WildcardReloadableResourceBundleMessageSource">
<property name="basenames">
<array>
<value>classpath*:**/msg-*</value>
<value>classpath*:**/label-*</value>
</array>
</property>
</bean>
</beans>

Java Configuration

@Bean(name = "messageSource")
public ReloadableResourceBundleMessageSource resourceBundleMessageSource() {
WildcardReloadableResourceBundleMessageSource messageSource =
new WildcardReloadableResourceBundleMessageSource();
String[] baseNames = StringUtils.commaDelimitedListToStringArray("classpath*:**/label-*");
messageSource.setBasenames(baseNames);
return messageSource;
}

1 comment:

  1. Harrah's Lake Tahoe - MapyRO
    View map of Harrah's Lake 서산 출장안마 Tahoe, Stateline, NV. Harrah's Casino, Hotel, 진주 출장샵 and RV Park in Stateline. 777 강원도 출장샵 Harrah's Blvd. 당진 출장샵 Stateline, 영주 출장샵 NV 89449.

    ReplyDelete

Spring magic: Dynamically set URI prefix for group of controllers

Overview Say you have a big Spring or Spring Boot project with a lot of controller, which you want do separate in different groups with d...