apeterlic 36fef5ec7a Add Send Array as Part of x-www-form-urlencoded (#12808)
* Add Send Array as Part of x-www-form-urlencoded

* Add README.md
2022-10-13 07:02:48 +02:00

13 lines
334 B
Java

package com.baeldung;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class SpringBootRest3Application {
public static void main(String[] args) {
SpringApplication.run(SpringBootRest3Application.class, args);
}
}