Skip to content
Snippets Groups Projects
Commit 7521abe1 authored by stendler's avatar stendler
Browse files

Enable Spring-boot auto configuration

does things automatically for us without having to explicitly state it - might do stuff we have no clue about.
But its a prototype - so what could possibly go wrong?
parent a74ff093
No related branches found
No related tags found
No related merge requests found
package de.fuberlin.imp.memorybox.restmembox; package de.fuberlin.imp.memorybox.restmembox;
import org.springframework.boot.SpringApplication; import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication @SpringBootApplication
@EnableAutoConfiguration
public class RestWebappMemoryBoxApplication { public class RestWebappMemoryBoxApplication {
public static void main(String[] args) { public static void main(String[] args) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment