以spring boot为框架,写一个乘法运算题
时间: 2024-09-14 13:04:48 浏览: 60
从0写一个问卷调查APP后端spring boot基础框架
在Spring Boot框架中创建一个简单的乘法运算题示例,我们可以使用Web MVC来构建一个RESTful API服务。这里是一个基本的步骤:
1. 首先,你需要设置一个`@RestController`注解的类,这个类会处理HTTP请求并返回结果。
```java
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class MathController {
@GetMapping("/multiply")
public String multiply(@RequestParam("num1") int num1, @RequestParam("num2") int num2) {
return "The product of " + num1 + " and " + num2 + " is: " + (num1 * num2);
}
}
```
在这个例子中,当你访问类似`http://localhost:8080/multiply?num1=5&num2=6`的URL时,它会计算5和6的乘积,并返回结果。
阅读全文