Minor cleanup
This commit is contained in:
parent
3385b72fb5
commit
73e3e356fa
5 changed files with 56 additions and 47 deletions
19
.idea/misc.xml
generated
19
.idea/misc.xml
generated
|
@ -1,4 +1,23 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="EntryPointsManager">
|
||||
<entry_points version="2.0">
|
||||
<entry_point TYPE="field" FQNAME="com.example.springboot.HelloControllerTest mvc" />
|
||||
<entry_point TYPE="field" FQNAME="com.example.springboot.HelloControllerIT template" />
|
||||
</entry_points>
|
||||
<pattern value="com.example.springboot.Application" />
|
||||
<pattern value="com.example.springboot.ApplicationBuild" />
|
||||
<pattern value="com.example.springboot.Application" method="commandLineRunner" />
|
||||
<pattern value="com.example.springboot.HelloControllerIT" method="getHello" />
|
||||
<pattern value="com.example.springboot.HelloControllerTest" method="getHello" />
|
||||
<pattern value="com.example.springboot.HelloController" />
|
||||
<pattern value="com.example.springboot.HelloControllerIT" />
|
||||
<pattern value="com.example.springboot.HelloControllerTest" />
|
||||
<pattern value="com.example.springboot.HelloController" method="index" />
|
||||
<pattern value="com.example.springboot.Application" method="main" />
|
||||
<pattern value="com.example.springboot.ApplicationBuild" method="main" />
|
||||
<pattern value="com.example.springboot.HelloControllerIT" method="main" />
|
||||
</component>
|
||||
<component name="PDMPlugin">
|
||||
<option name="skipTestSources" value="false" />
|
||||
</component>
|
||||
|
|
|
@ -1,16 +1,15 @@
|
|||
package com.example.springboot;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
import org.springframework.boot.CommandLineRunner;
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.context.ApplicationContext;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
@SpringBootApplication
|
||||
public class Application {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(Application.class, args);
|
||||
}
|
||||
|
@ -18,7 +17,6 @@ public class Application {
|
|||
@Bean
|
||||
public CommandLineRunner commandLineRunner(ApplicationContext ctx) {
|
||||
return args -> {
|
||||
|
||||
System.out.println("Let's inspect the beans provided by Spring Boot:");
|
||||
|
||||
String[] beanNames = ctx.getBeanDefinitionNames();
|
||||
|
@ -26,8 +24,6 @@ public class Application {
|
|||
for (String beanName : beanNames) {
|
||||
System.out.println(beanName);
|
||||
}
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -5,10 +5,8 @@ import org.springframework.web.bind.annotation.RestController;
|
|||
|
||||
@RestController
|
||||
public class HelloController {
|
||||
|
||||
@GetMapping("/")
|
||||
public String index() {
|
||||
return "Greetings from Spring Boot!";
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
package com.example.springboot;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.boot.test.web.client.TestRestTemplate;
|
||||
|
@ -11,17 +10,16 @@ import static org.assertj.core.api.Assertions.assertThat;
|
|||
|
||||
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
|
||||
public class HelloControllerIT {
|
||||
|
||||
@Autowired
|
||||
private TestRestTemplate template;
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
new HelloControllerIT().getHello();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getHello() throws Exception {
|
||||
ResponseEntity<String> response = template.getForEntity("/", String.class);
|
||||
assertThat(response.getBody()).isEqualTo("Greetings from Spring Boot!");
|
||||
}
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
new HelloControllerIT().getHello();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,11 +1,6 @@
|
|||
package com.example.springboot;
|
||||
|
||||
import static org.hamcrest.Matchers.equalTo;
|
||||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;
|
||||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
@ -13,10 +8,13 @@ import org.springframework.http.MediaType;
|
|||
import org.springframework.test.web.servlet.MockMvc;
|
||||
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
|
||||
|
||||
import static org.hamcrest.Matchers.equalTo;
|
||||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;
|
||||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
|
||||
|
||||
@SpringBootTest
|
||||
@AutoConfigureMockMvc
|
||||
public class HelloControllerTest {
|
||||
|
||||
@Autowired
|
||||
private MockMvc mvc;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue