Compare commits
2 Commits
main
...
release-1.
Author | SHA1 | Date |
---|---|---|
xwjxunlei2024 | 748388e17f | 4 months ago |
xwjxunlei2024 | 59c6402400 | 4 months ago |
@ -0,0 +1,16 @@
|
|||||||
|
package com.example.demo.controller;
|
||||||
|
|
||||||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestParam;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("/product")
|
||||||
|
public class ProductController {
|
||||||
|
|
||||||
|
@GetMapping("/greet")
|
||||||
|
public String greet(@RequestParam(name = "name", defaultValue = "World") String name) {
|
||||||
|
return "Hello, " + name + "!";
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue