Spring 3 MVC
-
Spring @RequestHeader Annotation example
Let us quickly check how to access http Header information in Spring MVC Controller. Spring @RequestHeader Annotation Spring MVC provides annotation @RequestHeader that can be used to map controller parameter to request header value. Following is the ...1 comment
-
Spring MVC Exception Handling using @ControllerAdvice annotation
Spring MVC provides a great way to handle exceptions and errors. @ExceptionHandler annotation is core to this feature. For each Spring controller we can simply define a ...5 comments
-
Spring MVC Cookie example
In this post we will see how to access and modify http cookies of a webpage in Spring MVC framework. Read Http Cookie in Spring ...0 comments
More in Spring 3 MVC
Hibernate
-
org.hibernate.AnnotationException: No identifier specified for entity
When you are writing a piece of code from scratch a lot of time you do silly mistakes and still wonder why its not working. Well same thing happened the other day when I added ...22 comments
-
Hibernate Inheritance: Table Per Concrete Class (Annotation & XML mapping)
Welcome to Hibernate Tutorial Series. In previous tutorials we saw how to implement Inheritance in Hibernate: One Table per Subclass. Today we will see how to implement Hibernate Inheritance: One Table per Concrete Class scheme. You may ...38 comments
-
Hibernate Inheritance: Table Per Subclass (Annotation & XML mapping)
Welcome to Hibernate Tutorial Series. In previous tutorials we saw how to implement Inheritance in Hibernate: One Table Per Hierarchy. Today we will see how to implement Hibernate Inheritance: One Table per Subclass scheme. You may want ...27 comments