From: Kai Moritz Date: Sun, 9 Apr 2023 07:56:14 +0000 (+0200) Subject: Spring Initializr: 3.1.0-M2 / Spring WebMVC / Thymeleaf X-Git-Url: https://juplo.de/gitweb/?p=demos%2Fspring-boot;a=commitdiff_plain Spring Initializr: 3.1.0-M2 / Spring WebMVC / Thymeleaf - Migrated the template to WebMVC --- diff --git a/pom.xml b/pom.xml index 4e5b16c..3a71f8c 100644 --- a/pom.xml +++ b/pom.xml @@ -23,7 +23,7 @@ org.springframework.boot - spring-boot-starter-webflux + spring-boot-starter-web @@ -32,8 +32,8 @@ test - io.projectreactor - reactor-test + org.assertj + assertj-core test diff --git a/src/test/java/de/juplo/demo/DemoApplicationTests.java b/src/test/java/de/juplo/demo/DemoApplicationTests.java index e16b8ec..850debd 100644 --- a/src/test/java/de/juplo/demo/DemoApplicationTests.java +++ b/src/test/java/de/juplo/demo/DemoApplicationTests.java @@ -2,13 +2,16 @@ package de.juplo.demo; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.test.autoconfigure.web.reactive.AutoConfigureWebTestClient; +import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc; import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.web.reactive.server.WebTestClient; +import org.springframework.test.web.servlet.MockMvc; + +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; @SpringBootTest -@AutoConfigureWebTestClient +@AutoConfigureMockMvc class DemoApplicationTests { @Test @@ -17,10 +20,8 @@ class DemoApplicationTests { @Test - void getWelcomeResponseIsOk(@Autowired WebTestClient webClient) { - webClient - .get().uri("/") - .exchange() - .expectStatus().isOk(); + void getWelcomeResponseIsOk(@Autowired MockMvc mvc) throws Exception + { + mvc.perform(get("/")).andExpect(status().isOk()); } }