该用户从未签到
|
- <!-- 国际化的消息资源文件 -->
/ I# [9 ?% B$ w+ y) P. B2 l; u - <bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
+ b2 A% ^' x- C0 Z - <property name="basenames">; l( h5 @- R- Q* I3 p
- <list>9 L ]% f9 [5 A
- <!-- 在web环境中一定要定位到classpath 否则默认到当前web应用下找 -->
1 s6 H; V1 }1 G% o6 ]+ b# e5 j - <value>classpath:messages</value>
4 f# u; d( G' t1 V; y, d - </list>! F x, ]( t, ]2 b$ Y ^/ g
- </property>$ l6 d, C; R9 _& H
- <property name="defaultEncoding" value="UTF-8"/>
; Z& D4 v9 F8 V) _: \1 T - <property name="cacheSeconds" value="60"/>: c0 V3 G4 C9 {) _- _( ^( I
- </bean>
复制代码 此处basenames内一定是 classpath:messages ,如果你写出“messages”,将会到你的web应用的根下找 即你的messages.properties一定在 web应用/messages.propertis。- e( K2 Z! S D' o' B
|
|