Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix #21 : add get/post mapping to the http request #25

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ public ExampleController(JdbcTemplate jdbc, ApplicationInstanceInfo info) {
this.info = info;
}

@RequestMapping("/")
@GetMapping("/")
public String hello() {
return this.jdbc.queryForObject("select model from car where id = 1",
String.class);
}

@RequestMapping("/cloudinfo")
@GetMapping("/cloudinfo")
public ApplicationInstanceInfo info() {
return this.info;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public ExampleController(JdbcTemplate jdbc) {
this.jdbc = jdbc;
}

@RequestMapping("/")
@GetMapping("/")
public String hello() {
return jdbc.queryForObject("select model from car where id = 1", String.class);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public IntegrationFlow webSocketFlow(EchoService echoService) {
};
}

@RequestMapping("/echo")
@GetMapping("/echo")
public void send(@RequestParam String name) {
requestChannel().send(MessageBuilder.withPayload(name).build());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ public ExampleController(ExampleHealthIndicator indicator) {
this.indicator = indicator;
}

@RequestMapping("/")
@GetMapping("/")
public String hello() {
return "Hello World!";
}

@RequestMapping("/up")
@GetMapping("/up")
public String up() {
this.indicator.setUp(true);
return "now up";
}

@RequestMapping("/down")
@GetMapping("/down")
public String down() {
this.indicator.setUp(false);
return "now down";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public ExampleController(ExampleService service) {
this.service = service;
}

@RequestMapping("/")
@GetMapping("/")
public String hello() {
this.service.call();
return "Hello World!";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@RestController
public class GreetingsRestController {

@RequestMapping("/hi")
@PostMapping("/hi")
public Map<String, Object> hi(Principal principal) {
Map<String, Object> result = new HashMap<>();
result.put("id", UUID.randomUUID().toString());
Expand Down