Wasim Thabraze 9 лет назад
Родитель
Сommit
528f05fa55

+ 1
- 1
complete/src/main/java/hello/Application.java Просмотреть файл

@@ -19,7 +19,7 @@ public class Application {
19 19
     public CommandLineRunner commandLineRunner(ApplicationContext ctx) {
20 20
         return args -> {
21 21
 
22
-            System.out.println("Let's inspect the beans provided by Spring Boot:");
22
+            System.out.println("Let's inspect the beans-----test provided by Spring Boot:");
23 23
 
24 24
             String[] beanNames = ctx.getBeanDefinitionNames();
25 25
             Arrays.sort(beanNames);

+ 1
- 1
complete/src/main/java/hello/HelloController.java Просмотреть файл

@@ -8,7 +8,7 @@ public class HelloController {
8 8
     
9 9
     @RequestMapping("/")
10 10
     public String index() {
11
-        return "Greetings from Spring Boot!";
11
+        return "Greetings -----------------from Spring Boot!";
12 12
     }
13 13
     
14 14
 }