该用户从未签到
|
- <!-- 国际化的消息资源文件 -->
, \7 b }8 e1 \7 f2 |+ r' ~) } - <bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">5 b9 H: q" R& c) E& j! s: G/ B
- <property name="basenames">& @1 G" \+ `3 g8 w$ f6 f. I- m
- <list># X7 S* M& j3 b' u) B5 G" h) _
- <!-- 在web环境中一定要定位到classpath 否则默认到当前web应用下找 -->3 V. | @. r/ s$ y) ~
- <value>classpath:messages</value>1 R! x6 ?. A6 M+ p1 ]% N( p( f1 ?6 j
- </list>
* T" q8 y# j7 O9 y9 ~9 } - </property>7 A$ i9 k5 R; I$ O+ p5 p
- <property name="defaultEncoding" value="UTF-8"/>
" f! Z5 ], r: k) K9 G - <property name="cacheSeconds" value="60"/>
- z: a. J9 J n! P! ]; j - </bean>
复制代码 此处basenames内一定是 classpath:messages ,如果你写出“messages”,将会到你的web应用的根下找 即你的messages.properties一定在 web应用/messages.propertis。
3 a: H0 P0 W1 Y m |
|