能写个springboot代码吗
时间: 2024-11-09 11:25:31 浏览: 16
当然可以。下面是一个简单的Spring Boot应用的示例,它创建了一个RESTful API endpoint,返回"Hello, World!":
```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 HelloWorldApplication {
public static void main(String[] args) {
SpringApplication.run(HelloWorldApplication.class, args);
}
@RestController
public static class HelloWorldController {
@GetMapping("/hello")
public String hello() {
return "Hello, World!";
}
}
}
```
在这个例子中,`@SpringBootApplication`注解标记了该类为Spring Boot应用程序的入口点,并启用自动配置。`@RestController`和`@GetMapping`注解分别用于声明一个控制层和一个HTTP GET请求处理器,当访问`http://localhost:8080/hello`时,就会返回"Hello, World!"的信息。
要运行这个应用,你需要先安装Spring Boot开发工具,然后通过命令行启动项目:
```sh
mvn spring-boot:run
```
或者直接在IDEA等支持Spring Boot的IDE中运行。
阅读全文