* 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
14 lines
333 B
Java
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);
|
|
}
|
|
|
|
}
|