写一个Springboot程序
时间: 2023-03-28 11:02:29 浏览: 97
好的,我可以回答这个问题。Springboot 是一个开源的 Java Web 框架,可以帮助开发者快速构建 Web 应用程序。下面是一个简单的 Springboot 程序示例:
1. 首先,需要在 pom.xml 文件中添加 Springboot 的依赖:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
```
2. 创建一个 Springboot 应用程序的主类,例如:
```
@SpringBootApplication
public class MyApp {
public static void main(String[] args) {
SpringApplication.run(MyApp.class, args);
}
}
```
3. 创建一个控制器类,例如:
```
@RestController
public class MyController {
@GetMapping("/hello")
public String hello() {
return "Hello, Springboot!";
}
}
```
4. 运行程序,访问 http://localhost:808/hello,即可看到 "Hello, Springboot!" 的输出。
以上就是一个简单的 Springboot 程序示例,希望能对你有所帮助。
阅读全文