1.先准备springboot框架,文件目录如下
因未连接数据库,仅有controller和service层。
SokamanPlayerApplication是启动类。
model里面是一些数据类型。
helloworld忽略。
2.model中的数据类型,记得加相关注解
?
3.PlayController文件如下
@RestController
@RequestMapping("/demoPlay")
public class PlayController {
@Autowired
private PlayServiceImpl playServiceImpl;
@PostMapping("/")
@ResponseBody
public Position getGroups(@RequestBody CurrentGameDTO data) {
return playServiceImpl.demoAnalysis(data);
}
}
Mapping注解中展示了url。
请求的传入值数据类型应与样例中 CurrentGameDTO 类保持一致。
传出至数据类型为return的数据类型。
4.IPlayService接口如下
public interface IPlayService {
Position demoAnalysis(CurrentGameDTO data);
}
定义了即将暴露的方法的入参类型(CurrentGameDTO )和出参类型(Position)。
5.PlayServiceImpl类如下
@Service
public class PlayServiceImpl implements IPlayService {
@Override
public Position demoAnalysis(CurrentGameDTO data) {
Position ans;
//处理数据
return ans;
}
}
若想要调试post数据,请参照使用postman调试后端请求
|