Mainak Majumder b7bf539a69 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
2021-05-14 21:44:22 -05:00

14 lines
333 B
Java

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);
}
}