该用户从未签到
|
- <!-- 国际化的消息资源文件 -->
0 X. S7 S8 t$ d4 a* w7 M! u' k, A - <bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">1 Y3 i5 W7 k3 a# } J3 n4 B
- <property name="basenames">
) f; A9 H. L1 N+ G8 e' z# E, Q - <list>
" U, Z4 y* A. @# M4 @4 H& ?. d - <!-- 在web环境中一定要定位到classpath 否则默认到当前web应用下找 -->
$ c; l6 B) k# ?) f; ^0 O - <value>classpath:messages</value>
X4 Y9 D9 h" m# U; } - </list>
3 R% F( p! c% u - </property>
+ n& }5 `) V; N& G- W/ O9 u - <property name="defaultEncoding" value="UTF-8"/>
7 K: T0 }8 G# d) s: i - <property name="cacheSeconds" value="60"/>
, e& m/ \* n7 A3 \2 Y* r9 t' | - </bean>
复制代码 此处basenames内一定是 classpath:messages ,如果你写出“messages”,将会到你的web应用的根下找 即你的messages.properties一定在 web应用/messages.propertis。% l; @: F" D5 D- h% Y" q
|
|