Open
Description
/**
-
Created by Zenger on 2018/5/21.
*/
@RestController(value = "/hello")
public class HelloController {@GetMapping
public String hello() {
return "Demo project for Spring Boot !";
}
}
Metadata
Assignees
Labels
No labels
/**
Created by Zenger on 2018/5/21.
*/
@RestController(value = "/hello")
public class HelloController {
@GetMapping
public String hello() {
return "Demo project for Spring Boot !";
}
}