Files
spring-boot-rest/spring-web-modules/spring-rest-http-3/src/main/java/com/baeldung/SpringBootRest3Application.java
apeterlic 2aede0b5a5 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);
}
}