Polish "Upgrade to Spring Boot 3"

This commit is contained in:
Janne Valkealahti
2023-10-05 12:49:46 +01:00
parent 497eebe55c
commit 2025282e06
20 changed files with 242 additions and 191 deletions

View File

@@ -15,13 +15,11 @@
*/
package demo.web;
import demo.web.StateMachineConfig.Events;
import demo.web.StateMachineConfig.States;
import jakarta.annotation.PostConstruct;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.annotation.Autowired;
@@ -46,6 +44,10 @@ import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.ResponseStatus;
import demo.web.StateMachineConfig.Events;
import demo.web.StateMachineConfig.States;
import jakarta.annotation.PostConstruct;
import reactor.core.publisher.Mono;
@Controller