Create your own annotation that is used to decorate instance variables or setter methods, then a post-processor that processes the annotation and injects a generic proxy which resolves the correct implementation at runtime and delegates the call to it.
@Component
public class TransactionService {
@LocalizedResource
private TransactionRules rules;
//..
}
@Retention(RUNTIME)
@Target({FIELD, METHOD})
public @interface LocalizedResource {}
Here is the algorithm for the postProcessBeforeInitialization(bean, beanName)
method in your bean post-processor :
- Introspect the bean class in order to find instance variables or setter methods which are annotated with @LocalizedResource. Store the result in a cache (just a map) indexed by the class name. You can use Spring's
InjectionMetadata
for this purpose. You can look for examples on how it works by searching references to this classe in spring code.
- If such a field or method exists for the bean, create a proxy using the InvocationHandler described below, passing it the current BeanFactory (the bean post-processor has to be ApplicationContextAware). Inject that proxy in the instance variable, or invoke the setter method with the proxy instance.
Here is the InvocationHandler for the proxy that will be used to create localized resources.
public class LocalizedResourceResolver implements InvocationHandler {
private final BeanFactory bf;
public LocalizedResourceResolver(BeanFactory bf) {
this.bf = bf;
}
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
String locale = lookupCurrentLocale();
Object target = lookupTarget(locale);
return method.invoke(target, args);
}
private String lookupCurrentLocale() {
// here comes your stuff to look up the current locale
// probably set in a thread-local variable
}
private Object lookupTarget(String locale) {
// use the locale to match a qualifier attached to a bean that you lookup using the BeanFactory.
// That bean is the target
}
}
You may need to make some more controls over the bean type, or add the requested bean type in the InvocationHandler.
The next thing is to autodetect implementations of a given interface, which are local-dependant, and register them with the qualifier corresponding to the locale. You can implement a BeanDefinitionRegistryPostProcessor
or BeanFactoryPostProcessor
for that purpose, in order to add new BeanDefinition
s to the registry, with proper qualifier, one for each implementation of locale-aware interfaces. You can guess the locale of an implementation by following naming conventions : if a locale-aware interface is called TransactionRules, then implementations may be named TransactionRules_ISOCODE in the same package.
If you cannot afford such a naming convention, you will need to have some sort of classpath scanning + a way to guess the locale of a given implementation (maybe an annotation on the implementation classes). Classpath scanning is possible but quite complex and slow, so try to avoid it.
Here's a summary of what happens:
- When the application starts up, implementations of TransactionRules will be discovered and bean definitions will be created for each of them, with a qualifier corresponding to the locale of each implementation. The bean name for these beans is not relevant as lookup is performed based on type and qualifier.
- During execution, set the current locale in a thread-local variable
- Lookup the bean you need (eg. TransactionService). The post-processor will inject a proxy for each @LocalizedResource instance fields or setter method.
- When invoking a method on TransactionService that ends up into some TransactionRules' method, the invocation handler bound to the proxy switches to the correct implementation based on the value stored in the thread-local variable, then delegates the call to that implementation.
Not really trivial, but it works. This is actually how @PersistenceContext is processed by Spring, except for implementations lookup, which is an additional feature of your use case.