美文网首页
2020-03-07

2020-03-07

作者: 伊夫_艾尔斯 | 来源:发表于2020-03-07 11:38 被阅读0次

    Hello,SpringBoot.


    Spring Quickstart Guide
    
    
    package com.example.demo;
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.RequestParam;
    import org.springframework.web.bind.annotation.RestController;
                  
    @SpringBootApplication
    @RestController
    public class DemoApplication {
                    
                      
        public static void main(String[] args) {
            SpringApplication.run(DemoApplication.class, args)
        }
                      
        @GetMapping("/hello")
        public String hello(@RequestParam(value = "name", defaultValue = "World") String name) {
            return String.format("Hello %s!", name);
        }
                    
    }
                
    
    

    \color{red}{不断学习,不断探究!}

    相关文章

      网友评论

          本文标题:2020-03-07

          本文链接:https://www.haomeiwen.com/subject/vhlqdhtx.html