java,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 ApiJavaApplication {, public static void main(String[] args) {, SpringApplication.run(ApiJavaApplication.class, args);, },},,@RestController,class HelloWorldController {, @GetMapping("/hello"), public String sayHello() {, return "Hello, World!";, },},
`,,这段代码创建了一个简单的 Spring Boot 应用程序,其中包含一个 RESTful API,该 API 在访问
/hello 路径时返回 "Hello, World!"。要运行此代码,您需要将其保存到一个文件中,并确保您的系统上安装了 Java 和 Maven。您可以使用以下命令来构建和运行应用程序:,,
`bash,mvn clean install,mvn spring-boot:run,
`,,这将启动应用程序,并在本地服务器上运行。您可以在浏览器中访问
http://localhost:8080/hello` 来查看 API 的响应。Powered By Z-BlogPHP 1.7.3