Quellcode durchsuchen

Merge 528f05fa5516c7b22c237ec771ebc6eaef7772f4 into b2add941bd3bddcffcf725eedb678486a9bf6bd7

Wasim Thabraze vor 9 Jahren
Ursprung
Commit
40ab7a0b7d

+ 1
- 1
complete/src/main/java/hello/Application.java Datei anzeigen

19
     public CommandLineRunner commandLineRunner(ApplicationContext ctx) {
19
     public CommandLineRunner commandLineRunner(ApplicationContext ctx) {
20
         return args -> {
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
             String[] beanNames = ctx.getBeanDefinitionNames();
24
             String[] beanNames = ctx.getBeanDefinitionNames();
25
             Arrays.sort(beanNames);
25
             Arrays.sort(beanNames);

+ 1
- 1
complete/src/main/java/hello/HelloController.java Datei anzeigen

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