SpringBootWeb案例2
以下是一个简化的Spring Boot Web应用程序的例子,它展示了如何创建一个简单的RESTful API:
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication
public class SpringBootWebExampleApplication {
public static void main(String[] args) {
SpringApplication.run(SpringBootWebExampleApplication.class, args);
}
}
@RestController
class GreetingController {
@GetMapping("/hello")
public String hello() {
return "Hello, Spring Boot!";
}
}
这个例子中,我们创建了一个简单的Spring Boot应用程序,它有一个REST控制器GreetingController
,该控制器对应于/hello
路径的GET请求,并返回一个简单的问候字符串。这个应用程序可以直接运行,并通过访问http://localhost:8080/hello
来测试这个API。
评论已关闭