Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.5k views
in Technique[技术] by (71.8m points)

spring - @PropertySource and UTF-8 properties file

Is it possible, using @PropertySource annotation, to configure the encoding that has to be used to load the property file?

An example to clarify my problem

@Configuration
@PropertySource("classpath:/myprop.properties")
public class MyApplicationContext {

    @Autowired(required = true)
    private Environment env;

    @Bean
    public MyBean myBean() {
       return new MyBean(env.getRequiredProperty("application.name"));
    }

}

myprop.properties is aUTF-8 file but, no matter what, "application.name" is interpreted as ISO-8859-1.

The workaround is to escape special chars in the properties file, but setting the encoding was possible with the old context:property-placeholder so I think it should be possible to do the same with @PropertySource

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It is now possible:

@PropertySource(value = "classpath:/myprop.properties", encoding="UTF-8")


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...