blob: 5fb7848daf6ef8c9d33bc964c16bc482218276af (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
package com.juick.www.configuration;
import com.juick.www.settings.TemplateSettingsHolder;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
import org.springframework.context.support.ResourceBundleMessageSource;
import org.springframework.core.env.Environment;
import javax.annotation.Resource;
/**
* Created by aalexeev on 11/22/16.
*/
@Configuration
@PropertySource("classpath:juick.conf")
public class WebAppConfiguration {
@Resource
private Environment env;
@Bean
public ResourceBundleMessageSource messageSource() {
ResourceBundleMessageSource messageSource = new ResourceBundleMessageSource();
messageSource.setBasenames("messages", "errors");
messageSource.setDefaultEncoding("UTF-8");
messageSource.setFallbackToSystemLocale(false);
messageSource.setUseCodeAsDefaultMessage(true);
return messageSource;
}
@Bean
public TemplateSettingsHolder settingsHolder() {
return new TemplateSettingsHolder(env);
}
}
|