Simple SpringBoot RestAPI Example
Simple SpringBoot RestAPI Example: Spring Boot is a way to create stand-alone applications with less or no configurations and has defaults for annotation configuration which we will use in our…
Learn Together
Simple SpringBoot RestAPI Example: Spring Boot is a way to create stand-alone applications with less or no configurations and has defaults for annotation configuration which we will use in our…
SpringBoot Annotations Before proceeding further let us first understand some important annotations of Spring Boot. @SpringBootApplication: annotation is equivalent to using @Configuration, @EnableAutoConfiguration and @ComponentScan with their default attributes. One thing…
Basic Spring Boot Application Example: We have already went through various examples using spring, To understand spring please refer here. What is Spring Boot? Spring Boot is a way to…