១) សៀវភៅ How to Win Friends & Influence People និពន្ធដោយលោក Dale Carnegie ត្រូវបានលក់អស់ច្រើនជាង ១៥ លានក្បាល បោះពុម្ពតាំងពីឆ្នាំ ១៩៣៦ រៀបរាប់ពីគំនិតរាប់លានរបស់បុគ្គលដែលជោគជ័យក្នុ…
ជួប អ្នកលើកទង់ជាតិខ្មែរ នៅ WTO
ជួប អ្នកលើកទង់ជាតិខ្មែរ នៅ WTO 1 Jan, 2015 05:00 បុគ្គលជោគជ័យ, រស់ជីវិត 8 Comment (s) ថ្ងៃទីមួយនៃឆ្នាំថ្មី បើអត់ទាន់ទៅណា ជួបជាមួយអ្នកលើកទង់ជាតិខ្មែរនៅ WTO សិន? នេះជាបទសម្ភាសន៍ពិសេសរវាង និ…
៧ឃ្លា បុគ្គលជោគជ័យនានាមិនដែលនិយាយ
៧ឃ្លា បុគ្គលជោគជ័យនានាមិនដែលនិយាយ 24 Feb, 2016 10:05 បុគ្គលជោគជ័យ, បុគ្គលបច្ចេកវិទ្យា 0 Comment (s) ភាពជោគជ័យ មិនមែនជាអ្វីដែលអាចសម្រេចបានតែមួយថ្ងៃ ឬមួយយប់បានទេ តែត…
Add bin and target to global svn ignore in Eclipse
This will keep you from committing bin and target directory files when you add projects to svn Click on Window -> Preferences Select Team -> Ignored Resources Click on Add Pattern and enter "bin" Cli…
Change Heap memory
If you want to run many project in one time, you must configure tomcat heap memory. -XX:PermSize=256m -XX:MaxPermSize=256m…
Internationalization & localization
1
2
3
4
5
6
|
<!-- Application Message Bundle -->
<bean id="messageSource"
class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basename" value="classpath:messages/messages" />
<property name="defaultEncoding" value="UTF-8"/>
</bean>
|
DispatcherServlet
enables you to automatically resolve messages using the client’s locale. This is done with LocaleResolver
objects. You can select between- an
AcceptHeaderLocaleResolver
, which inspects theaccept-language
header in the request that was sent by the client (e.g., a web browser). Usually this header field contains the locale of the client’s operating system. - a
CookieLocaleResolver
, - and a
SessionLocaleResolver
, which allows you to retrieve locales from the session that might be associated with the user’s reques
CookieLocaleResolver
CookieLocaleResolver
made the most sense for Podcastpedia.org . It inspects a cookie namedpodcastpediaPreferredLanguage
, that might exist on the client to see if a locale is specified:
1
2
3
4
5
|
<bean id="localeResolver">
<property name="cookieName" value="podcastpediaPreferredLanguage"/>
<property name="defaultLocale" value="en_US" />
<property name="cookieMaxAge" value="604800"/>
</bean>
|
defaultLocale
is set to American English. The cookieMaxAge
(the maximum time a cookie will stay persistent on the client) is set to 604800 seconds (one month).
LocaleChangeInterceptor
LocaleResolver
is normally used in combination with the LocaleChangeInterceptor
, which allows you to change of the current locale by using a defined parameter in the request (in this case the lang
parameter). So, for example, a request for the following URL,http://www.podcastpedia.org/categories?lang=de
, will change the site language to German:
1
2
3
4
5
6
|
<mvc:interceptors>
<!-- Changes the locale when a 'lang' request parameter is sent; e.g. /?lang=de -->
<bean class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor">
<property name="paramName" value="lang"/>
</bean>
</mvc:interceptors>
|
Access the Locale in Spring
org.springframework.context.i18n.LocaleContextHolder.LocaleContextHolder.getLocale()
, which returns the Locale associated with the current thread, if any, or the system default Locale else. In the following code snippet you can see how I use this in the start page’s controller to display the newest and most popular podcasts based on the language selected:Browser Caching optimization
expiring
and cache control
for the html pages to 0 seconds:
1
2
3
|
ExpiresByType text/html "access plus 0 seconds"
....
Header set Cache-Control "max-age=0, private"
|
We promise to only share high quality podcasts and episodes.
Spring 3 MVC: Internationalization & localization Application Context Configuration Message Resource Files Normally in the Java world, the locale-specific data is stored in message resource files. I…