请用SpringBoot写一个Web服务的代码
时间: 2024-05-11 21:18:21 浏览: 76
Web项目的基础部分,Angular加SpringBoot编写,实现了基于权限、角色、用户的基本系统和流媒体服务+源代码+文档说
好的,您可以参考以下代码来使用SpringBoot构建一个简单的Web服务:
首先,您需要在pom.xml文件中添加SpringBoot的依赖项:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
```
接着,编写一个RestController类,用于处理HTTP请求和响应:
```
@RestController
public class HelloController {
@GetMapping("/hello")
public String hello() {
return "Hello, World!";
}
}
```
最后,启动SpringBoot应用程序,并访问http://localhost:8080/hello,即可看到"Hello, World!"的响应。
代码示例:
```
package com.example.demo;
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
@RestController
public class DemoApplication {
@GetMapping("/hello")
public String hello() {
return "Hello, World!";
}
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
```
阅读全文