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:
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user