Code for the Baeldung article "HTTP PUT vs POST in REST (#10707)

* Application source code for the Baeldung article "HTTP PUT vs POST
method in REST API"

* update indention in pom file, update code in Address class

* update indention

* rename application

* update pom
This commit is contained in:
Mainak Majumder
2021-05-15 04:44:22 +02:00
committed by GitHub
parent 3c5b7234d9
commit b7bf539a69
5 changed files with 143 additions and 0 deletions
@@ -0,0 +1,13 @@
package com.baeldung.putvspost;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class PutVsPostApplication {
public static void main(String[] args) {
SpringApplication.run(PutVsPostApplication.class, args);
}
}