Преглед изворни кода

Merge 528f05fa5516c7b22c237ec771ebc6eaef7772f4 into b2add941bd3bddcffcf725eedb678486a9bf6bd7

Wasim Thabraze пре 9 година
родитељ
комит
40ab7a0b7d

+ 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
 }