* BAEL-1636 file upload with Spring Boot (nothing changes in the code per se, just the dependencies)

* BAEL-1636 removed bogus dependencies

* Updated rest-assured version because 2.9.0 is no longer on Central
This commit is contained in:
Alessio Stalla
2018-03-15 23:52:27 +01:00
committed by maibin
parent b508689815
commit 69cd5cf49f
2 changed files with 44 additions and 31 deletions

View File

@@ -0,0 +1,17 @@
package com.baeldung.app;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.support.SpringBootServletInitializer;
import org.springframework.context.annotation.ComponentScan;
@EnableAutoConfiguration
@ComponentScan(value = {"com.baeldung.web.controller"}, resourcePattern = "**/FileUploadController.class")
@SpringBootApplication
public class Application extends SpringBootServletInitializer {
public static void main(final String[] args) {
SpringApplication.run(Application.class, args);
}
}