-
Notifications
You must be signed in to change notification settings - Fork 0
Spring Boot basics
Yash edited this page Jul 26, 2018
·
1 revision
Spring Boot does not generate code and there is absolutely no requirement for XML configuration.
COMMON SPRING BOOT PROPERTIES « application.properties
Various properties can be specified inside your application.properties file, inside your application.yml file, or as command line switches.
# Preferred JSON mapper to use for HTTP message conversion to use Gson instead of Jackson.
spring.http.converters.preferred-json-mapper=gson
# JACKSON on/off features that affect the way Java objects are serialized.
spring.jackson.serialization.write-dates-as-timestamps=false
Spring Boot is a project that is built on the top of the Spring Framework. It provides an easier and faster way to set up, configure, and run both simple and web-based applications. It is a Spring module that provides the RAD (Rapid Application Development) feature to the Spring Framework.