Friday 30 May 2014

spring mvc internationalization example

Internationalization (i18n) support in spring mvc example tutorial

 Internationalization is the process of designing a software application so that it can be adapted to various languages and regions without engineering changes. The term is frequently abbreviated as i18n (where 18 stands for the number of letters between the first i and last n in internationalization). Above definition essentially means making changes in your application such that it should be usable in multiple locales (or languages in simple words).

In this Post we will see step by step implementation of Spring with internationalization.

Wednesday 28 May 2014

Spring Jersey Rest Service Example

Spring Integrated with Jersey Restful Service Example

In this Post we will see how to integrate Jersey rest service with Spring Framework step by step.


Monday 12 May 2014

Exception Handling in Spring MVC

Exception Handling in Spring MVC using SimpleMappingExceptionResolver.

Spring has long provided a simple but convenient implementation of HandlerExceptionResolver - the SimpleMappingExceptionResolver. It provides options to:
  • Map exception class names to view names - just specify the classname, no package needed.
  • Specify a default (fallback) error page for any exception not handled anywhere else

In this Post you can get simple example on  SimpleMappingExceptionResolver step by step.