From 7521abe173b657fd112e33746f011e6fe665d949 Mon Sep 17 00:00:00 2001 From: stendler <stendler@mi.fu-berlin.de> Date: Wed, 6 Dec 2017 23:16:02 +0100 Subject: [PATCH] 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? --- .../memorybox/restmembox/RestWebappMemoryBoxApplication.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/de/fuberlin/imp/memorybox/restmembox/RestWebappMemoryBoxApplication.java b/src/main/java/de/fuberlin/imp/memorybox/restmembox/RestWebappMemoryBoxApplication.java index 7a943b1..0a75dae 100644 --- a/src/main/java/de/fuberlin/imp/memorybox/restmembox/RestWebappMemoryBoxApplication.java +++ b/src/main/java/de/fuberlin/imp/memorybox/restmembox/RestWebappMemoryBoxApplication.java @@ -1,9 +1,11 @@ package de.fuberlin.imp.memorybox.restmembox; import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication +@EnableAutoConfiguration public class RestWebappMemoryBoxApplication { public static void main(String[] args) { -- GitLab