Spring Boot Rookie Starter (continuous update)

Source: Internet
Author: User

Directory

    • Question One
    • Note

Recently entered the Java Pit, learning Spring boot. Keep a record of the problems you are having.

Question One

Problem with request parameters

/get/bobI want to getbob

    @RequestMapping(value = "/get/{name}")    public String GetName(@PathVariable String name){        return "Hello world "+name;    }

/get/?name=aliceI want to get the value of namealice

Method One

 @RequestMapping(value = "/get")    public String GetName(@RequestParam String name){        return "Hello world "+name;    }

Note: This notation enforces that name must have a value. If the URL is /get , you get an error message: Name must be present

Method Two

  @RequestMapping(value = "/get")    public String GetName( String name){        return "Hello world "+name;    }

Note: The name is not very large in the field. The request URL can be a /get value of name, null or it can be /get/?name=xxxx .

Note

Spring Boot Url 是区分大小写的

Spring Boot Rookie Starter (continuous update)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.