Showing posts with label Spring MVC. Show all posts
Showing posts with label Spring MVC. Show all posts
Friday, 14 July 2017
Spring MVC Java Config : Part 5 Secure RESTful API with Spring Security OAuth2
Monday, 10 July 2017
Spring MVC Java Config : Part 4 Spring Security for Web Application
Thursday, 6 July 2017
Spring MVC Java Config : Part 3 RESTful Web Services
It’s an is an architectural style which can be used to design web services, that can be consumed from a variety of clients.
The core idea is that, rather than using complex mechanisms such as CORBA, RPC or SOAP to connect between machines, simple HTTP/HTTPS is used to make calls among them.
Wednesday, 5 July 2017
Spring MVC Java Config : Part 2 Bean Validation and Exception Handler
It is always good to check the validity and integrity of form data before passing to business logic, let's see how to do it.
Spring MVC Java Config : Part 1 Bootstrapping a Web Application
Sunday, 18 June 2017
Spring with Embedded Tomcat without Spring Boot
Because of service-oriented architecture style, instead of a monolithic application , you may have several independent applications can run on their own.Let's see how to have a Spring powered standalone application with embedded Tomcat without Spring boot.
Thursday, 11 May 2017
Spring Boot Web Request Redirected to Dispatcher Again
If you like me followed https://spring.io/guides/gs/spring-boot/ and not able to open a web page hosted by Spring Boot , then this post may help you.
Wednesday, 10 December 2014
Spring MVC : Preventing Duplicate Form Submission without Spring Security
Spring MVC so far has no out of box solution to prevent duplicate form submission yet , while below are the possible solutions :Option 1 , javascript : disable submit button
Option 2 , Post-Redirect-Get pattern : send a redirect after submit
Option 3 , tokening : unique token between client and server
Both option 1 and option 2 have drawbacks , let's see how to implement option 3.
Subscribe to:
Posts (Atom)

